javascript - 您如何创建一个自定义的 css 弹出窗口以在每个访问者每周一次的页面加载时打开

标签 javascript html css jquery

好的,我有下面的代码,它允许我单击链接或将鼠标悬停在链接上以显示弹出窗口。我希望能够编辑它以使其在页面加载时打开。我还希望每个访问者每周只打开一次。

我是新手,所以任何帮助都会很棒!

谢谢

    <head>

<style type="text/css">
#fade {
    display: none;
    background: #000; 
    position: fixed; left: 0; top: 0; 
    z-index: 10;
    width: 100%; height: 100%;
    opacity: .80;
    z-index: 9999;
}
.popup_block{
    display: none;
    background: #fff;
    float: left;
    font-size: 1.2em;
    position: fixed;
    padding: 20px;     
    border: 20px solid #ddd;
    top: 50%; left: 50%;
    z-index: 99999;
    -webkit-box-shadow: 0px 0px 20px #000;
    -moz-box-shadow: 0px 0px 20px #000;
    box-shadow: 0px 0px 20px #000;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
img.btn_close {
    float: right; 
    margin: -55px -55px 0 0;
}
.popup p {
    padding: 5px 10px;
    margin: 5px 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
    position: absolute;
}
*html .popup_block {
    position: absolute;
}
</style>

</head>
<body>

<a href="#?w=200" rel="popup1" class="poplight">Hover to see pop-up</a>

<div id="popup1" class="popup_block">
TEST    
</div>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){

    //When you click on a link with class of poplight and the href starts with a # 
    $('a.poplight[href^=#]').hover(function() {
        var popID = $(this).attr('rel'); //Get Popup Name
        var popURL = $(this).attr('href'); //Get Popup href to define size

        //Pull Query & Variables from href URL
        var query= popURL.split('?');
        var dim= query[1].split('&');
        var popWidth = dim[0].split('=')[1]; //Gets the first query string value

        //Fade in the Popup and add close button
        $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://www.sohtanaka.com/web-design/examples/modal-window/close_pop.png" class="btn_close" title="Close Window" alt="Close" /></a>');

        //Define margin for center alignment (vertical + horizontal) - we add 80 to the height/width to accomodate for the padding + border width defined in the css
        var popMargTop = ($('#' + popID).height() + 80) / 2;
        var popMargLeft = ($('#' + popID).width() + 80) / 2;

        //Apply Margin to Popup
        $('#' + popID).css({ 
            'margin-top' : -popMargTop,
            'margin-left' : -popMargLeft
        });

        //Fade in Background
        $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
        $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer 

        return false;
    });


    //Close Popups and Fade Layer
    $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
          $('#fade , .popup_block').fadeOut(function() {
            $('#fade, a.close').remove();  
    }); //fade them both out

        return false;
    });


});

</script>

</body>

最佳答案

您必须将上次显示弹出窗口的时间包含在用户表中。然后,每当用户首次访问该站点(或登录)时,检查当前时间戳与上次弹出时间戳。如果是一周,则显示弹出窗口并将用户弹出窗口时间戳更新为当前时间戳。

关于javascript - 您如何创建一个自定义的 css 弹出窗口以在每个访问者每周一次的页面加载时打开,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3823911/

相关文章:

javascript - Kendo 源过滤器不起作用

javascript - 使用 javascript 选择融合表时出现错误 401

html - 如何从 ASP/vb.net Codebehind 获取 html 属性

javascript - 使用 jquery 隐藏和显示覆盖模态

javascript - 在 Ajax 调用后将值设置为 parent 的 parent 的 child 的 sibling

java - struts是如何找到css文件的?

javascript - jQuery 动态按钮上的加号和减号功能

javascript - 为什么 $cookieStore.get() 无法获取值?

php - 设计一种不同类型的标签云

javascript - Canvas drawImage - firefox/opera/ie(非 chrome)中瓷砖的可见边缘