当前位置: 编程技术>jquery
jquery宽屏特效之可关闭两边飘浮对联广告
来源: 互联网 发布时间:2014-09-03
本文导语: 本节内容: 可关闭的两边飘浮对联广告 代码说明: 可关闭的左右两边飘浮的对联广告代码jquery特效,宽屏分辨率大于1024px才显示。 点击关闭按钮可以单独关闭自己一边的飘浮的对联广告代码。 js代码中的var screen_w = screen.width;...
本节内容:
可关闭的两边飘浮对联广告
代码说明:
可关闭的左右两边飘浮的对联广告代码jquery特效,宽屏分辨率大于1024px才显示。
点击关闭按钮可以单独关闭自己一边的飘浮的对联广告代码。
js代码中的var screen_w = screen.width; if(screen_w>1024){duilian.show();} 是jquery判断浏览器分辨率的,可以修改这个可关闭的左右两边飘浮的对联广告代码所需要的浏览器分辨率值,
如果不想做判断可以删除这两句,让后把css代码 .duilian{top:260px;position:absolute; width:102px; overflow:hidden; display:none;}中的display:none;删除就不判断浏览器分辨率了。
点击两边飘浮的对联广告代码的下方关闭,可以关闭各自的半边对联广告。
1,部分html代码:
代码示例:
2,部分css代码如下:
代码示例:
/*下面是对联广告的css代码*/
.duilian{top:260px;position:absolute; width:102px; overflow:hidden; display:none;}
.duilian_left{ left:6px;}
.duilian_right{right:6px;}
.duilian_con{border:#CCC solid 1px; width:100px; height:300px; overflow:hidden;}
.duilian_close{ width:100%; height:24px; line-height:24px; text-align:center; display:block; font-size:13px; color:#555555; text-decoration:none;}
.duilian{top:260px;position:absolute; width:102px; overflow:hidden; display:none;}
.duilian_left{ left:6px;}
.duilian_right{right:6px;}
.duilian_con{border:#CCC solid 1px; width:100px; height:300px; overflow:hidden;}
.duilian_close{ width:100%; height:24px; line-height:24px; text-align:center; display:block; font-size:13px; color:#555555; text-decoration:none;}
3,部分左右两边飘浮的对联广告代码如下:
代码示例:
$(document).ready(function(){
var duilian = $("div.duilian");
var duilian_close = $("a.duilian_close");
var screen_w = screen.width;
if(screen_w>1024){duilian.show();}
$(window).scroll(function(){
var scrollTop = $(window).scrollTop();
duilian.stop().animate({top:scrollTop+260});
});
duilian_close.click(function(){
$(this).parent().hide();
return false;
});
});