2010-09-29 43 views
0

好吧我有以下代码,可以让我点击链接或将鼠标悬停在链接上以显示弹出窗口。我希望能够对其进行编辑以使其在页面加载时打开。我还希望每周只能为每位访问者开放一次。如何创建自定义css弹出窗口,以在每周访问者的网页上打开一次

我对此很陌生,所以任何帮助都会很棒!

感谢

<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> 

回答

1

你必须在user表,包括它们显示的弹出窗口的最后一次。然后,无论何时用户首次访问该网站(或登录),都会根据最后一个弹出时间戳检查当前时间戳。如果一个星期显示弹出窗口并将用户弹出时间戳更新为当前时间戳。

+0

我不知道该怎么做,你能解释多一点或给我看一些示例代码? – Collin 2010-09-29 17:29:51

+0

你将不得不知道一些服务器端语言。你知道什么服务器端语言? – Galen 2010-09-29 17:39:26

相关问题