CSS+Cookie实现的固定页脚广告条

jerry CSS 2015年08月20日 收藏

经常看到有些网站为了吸引用户注意,在页面底部放置固定横幅广告,用户滚动页面时,横幅广告一直固定在页底,并不随页面滚动而滚动,当然一般允许用户可以关闭广告条,并设置一定时间内不再显示此广告条。本文将介绍使用CSS+Cookie来实现这一效果。

HTML

首先,我们将横幅广告的html代码放到页面最底部,因为是最后加载的。也可以使用外部js动态插入到页面底部。整个HTML结构由遮罩层.float_layer,内容层.float_content组成,其中.float_bg为广告部分,内容可以是图片、文字等任意形式的html元素,.float_close是关闭按钮,用户不喜欢广告可以关闭展示。

  1. <div class="float_mask" id="float_mask">
  2. <div class="float_layer">
  3. </div>
  4. <div class="float_content clearfix">
  5. <div class="float_bg">
  6. <a target="_blank" href="com/" title='广告部分'>
  7. <div class="float_slogan"><!--广告内容--></div>
  8. </a>
  9. </div>
  10. <div class="float_close">
  11. <a onclick="closeFootAd()" href="#" title="我知道了"></a>
  12. </div>
  13. </div>
  14. </div>

CSS

我们使用CSS将广告条固定在页脚,以及展示半透明遮罩效果、广告关闭按钮等效果。我们知道position: fixed是固定元素位置,配合bottom、right等属性可以将元素固定在页面某个位置,并不随页面滚动而滚动。使用opacity属性可以实现透明效果。我们给.float_slogan一个background属性,将广告图片作为背景加入,当然你也可以不需要这样做,直接在上面的html中加入图片或文字。

  1. .float_mask{position: fixed;z-index: 19999;display:none;width: 100%;right: 0; bottom: 0;height: 105px;_bottom: auto;_width: 100%;_position: absolute;
  2. _top: expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)));}
  3. .float_layer{position: absolute;left: 0;top: 0;z-index: 1;width: 100%;height: 100%;background: #071828;filter: alpha(opacity=80);opacity: 0.80;}
  4. .float_content{ position: relative;z-index: 2;width: 1005px;height: 100%;margin: 0 auto;padding-left: 70px;}
  5. .float_bg, .float_close{ float: left;}
  6. .float_bg{position: relative;width: 820px;height: 135px;margin-top: -27px;}
  7. .float_slogan {position: absolute; background: url("footer_ad.png") 0 0 no-repeat;}
  8. .float_slogan{left: 0;bottom: 0;width: 800px;height: 135px;cursor: pointer;}
  9. .float_close{width: 60px;margin-top: 30px;}
  10. .float_close a {display: block;width: 53px; height: 52px; margin-left: 7px; background: url("close.png") 0 0 no-repeat;-webkit-transition: all 400ms;}

JAVASCRIPT

我们初次打开页面时,Javascript先去检测页底横幅广告关联的cookie信息,如果cookie表示的信息是关闭的,则不显示页底广告,反之显示页底广告。我们在点击关闭按钮的时候会调用closeFootAd()函数,点击关闭按钮,则将广告条隐藏,即关闭,并设置cookie相关值。以下是整个javascript的操作代码:

  1. window.onload = function(){
  2. if(getCookie("footad")==0){
  3. document.getElementById("float_mask").style.display="none";
  4. }else{
  5. document.getElementById("float_mask").style.display="block";
  6. }
  7. }
  8. //关闭底部广告
  9. function closeFootAd() {
  10. document.getElementById("float_mask").style.display="none";
  11. setCookie("footad","0");
  12. }
  13. //设置cookie
  14. function setCookie(name,value){
  15. var exp = new Date();
  16. exp.setTime(exp.getTime() + 1*60*60*1000);//有效期1小时
  17. document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString();
  18. }
  19. //取cookies函数
  20. function getCookie(name){
  21. var arr = document.cookie.match(new RegExp("(^| )"+name+"=([^;]*)(;|$)"));
  22. if(arr != null) return unescape(arr[2]); return null;
  23. }

关于cookie的知识,本站有文章做了详细介绍,请链接标签:Cookie。

下载地址