jquery实现两边飘浮可关闭的对联广告

jquery实现两边飘浮可关闭的对联广告

代码说明:

可关闭的左右两边飘浮的对联广告代码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;删除就不判断浏览器分辨率了。

点击两边飘浮的对联广告代码的下方关闭可以关闭各自的半边对联广告。

部分html代码如下:

<!--下面是对联广告的html代码结构--> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div>

部分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;}

部分左右两边飘浮的对联广告代码如下:

<script type="text/javascript"> $(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; }); }); </script>

面一段代码很简单是实现jquery两边飘浮的对联广告代码

本节内容:

两边飘浮的对联广告代码。

例子:

jquery实现的对联广告代码

示例代码如下所示:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script src="https://www.jb51.net/jquery/1.4.2/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> /** * 对联广告,可以两边飘浮 * by */ $(document).ready(function(){ var duilian = $("div.duilian"); var duilian_close = $("a.duilian_close"); var window_w = $(window).width(); if(window_w>1000){duilian.show();} $(window).scroll(function(){ var scrollTop = $(window).scrollTop(); duilian.stop().animate({top:scrollTop+100}); }); duilian_close.click(function(){ $(this).parent().hide(); return false; }); }); </script> <style> /*对联广告的css代码*/ .duilian{top:100px;position:absolute; width:102px; overflow:hidden; display:none;} .duilian_left{ left:6px;} .duilian_right{right:6px;} .duilian_con{border:red 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;} </style> </head> <body> <!--对联广告的html代码结构--> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div> <p></p> </body> </html>

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wgzgsd.html