2015-12-22 60 views
0

我希望当用户访问一个网站每次打开网页的弹出一次。 现在问题出现在每次重新加载主页时弹出。我只想显示一次这个弹出窗口。打开上的Magento首页的弹出窗口一次当用户打开一个网站

代码

<?php $currentUrl = Mage::helper('core/url')->getCurrentUrl(); 
if($currentUrl=='http://website.com/') 
{ 
?> 
<form action="<?php echo $this->getUrl('subscribe/index/subscriptionsave/'); ?>" id="subscribeForm" method="post"> 
<div id="boxes"> 
    <div id="dialog" class="window"> 
    <div id="popupfoot"> <a class="agree" href="#">close</a> </div> 
    <div class="popupcontentbox"> 
     <div class="box_content"> 
      <h2>Stay in the loop!!</h2> 
      <p>Be the first one to know about new arrivals, 
fresh offers & fashion updates.</p> 
     <div class="book-column-left"> 
     <?php /*?> <label class="f">Email Address<span>*</span></label><?php */?> 
     <input type="text" class="input-text required-entry validate-email" placeholder="Email Address *" name="emailid" id="emailid"> 
      </div> 
      <input type="submit" name="sub" value="Submit" class="btn"> 
      <div class="offer_text">Get flat 20% Off on your First purchase. Use coupon "INDULGE20".</div> 
     </div> 
    </div> 

    </div> 
    <div id="mask"></div> 
</div> 
</form> 
<?php } ?> 
<script type="text/javascript"> 
//<![CDATA[ 
    var subscribeForm = new VarienForm('subscribeForm', true); 
//]]> 
    </script> 



<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.js"></script> 
    <?php */?><script> 
    jQuery(document).ready(function() { 
    var id = '#dialog'; 
    //Get the screen height and width 
    var maskHeight = jQuery(window).height(); 
    var maskWidth = jQuery(window).width(); 

    //Set heigth and width to mask to fill up the whole screen 
    jQuery('#mask').css({'width':maskWidth,'height':maskHeight}); 

    //transition effect 
    jQuery('#mask').fadeIn(500);  
    jQuery('#mask').fadeTo("slow",0.9); 

    //Get the window height and width 
    var winH = jQuery(window).height(); 
    var winW = jQuery(window).width(); 

    //Set the popup window to center 
    jQuery(id).css('top', winH/2-jQuery(id).height()/2); 
    jQuery(id).css('left', winW/2-jQuery(id).width()/2); 

    //transition effect 
    jQuery(id).fadeIn(2000);  

    //if close button is clicked 
    jQuery('.window .agree').click(function (e) { 
    //Cancel the link behavior 
    e.preventDefault(); 

    jQuery('#mask').hide(); 
    jQuery('.window').hide(); 
    }); 

    //if mask is clicked 
    jQuery('#mask').click(function() { 
    jQuery(this).hide(); 
    jQuery('.window').hide(); 
    }); 


    jQuery(window).scroll(function() {  

    var scroll = jQuery(window).scrollTop(); 
      if(scroll > 300){ 
       jQuery(".gotop").addClass("active"); 
      }else if(scroll < 300){ 
       jQuery(".gotop").removeClass("active"); 
      } 


     }); 

     jQuery('.gotop').click(function(){ 
     jQuery("html, body").animate({ scrollTop: 0 }, 700); 
      return false; 
     }); 
    }); 
    </script> 

回答

2

保存在翻页时php边检查开放期间,例如OPENED = 1cookies值,那么如果这种饼干目前已经那就不要添加popup代码或使该检查在javascript侧,不显示popup

JS实现示例

1)添加setget饼干功能,你的JS - 参见手册这里大约setCookiegetCookie - http://www.w3schools.com/js/js_cookies.asp

<script type="text/javascript"> 

function setCookie(cname, cvalue, exdays) { 
    var d = new Date(); 
    d.setTime(d.getTime() + (exdays*24*60*60*1000)); 
    var expires = "expires="+d.toUTCString(); 
    document.cookie = cname + "=" + cvalue + "; " + expires; 
} 
function getCookie(cname) { 
    var name = cname + "="; 
    var ca = document.cookie.split(';'); 
    for(var i=0; i<ca.length; i++) { 
     var c = ca[i]; 
     while (c.charAt(0)==' ') c = c.substring(1); 
     if (c.indexOf(name) == 0) return c.substring(name.length,c.length); 
    } 
    return ""; 
} 

</script> 

2)简单地用if contion代码显示您的弹出式封装,当我从了解你的乱码是jQuery(id).fadeIn(2000);

if(getCookie('popup_opened') == ""){ 
    jQuery(id).fadeIn(2000); 

    // creates popup_opened cookie and will keep it till browser close 
    setCookie('popup_opened', '1', 0) 
} 

注:通过这种解决方案您的访问者在租赁一次应该看到他的每个浏览器弹出作为cookie分别存储在每个浏览器

+0

你能否请申请我的上面的代码,以清楚表明谢谢 – Prince

+0

好吧我更新了答案,简单的exmaple – Armen

+0

现在它显示弹出一次,但当我关闭该网站,并再次打开该网站,当时弹出不来...........只是当我清除浏览器的历史,但我希望每次弹出窗口,当我打开网站 – Prince