手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >jquery实现两边飘浮可关闭的对联广告
jquery实现两边飘浮可关闭的对联广告
摘要:效果展示:代码说明:可关闭的左右两边飘浮的对联广告代码jquery特效,宽屏分辨率大于1024px才显示。因为考虑到窄屏下显示对联广告那真是...

效果展示:

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

代码说明:

可关闭的左右两边飘浮的对联广告代码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代码如下:

<> <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="http://www.jb51.netjquery/1.4.2/jquery.min.js" type="text/javascript"></script> <script type="text/javascript"> /** * 对联广告,可以两边飘浮 * by www.jb51.net */ $(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> <> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div> <div> <div>对联的内容</div> <a href="#">X关闭</a> </div> <p></p> </body> </html>

【jquery实现两边飘浮可关闭的对联广告】相关文章:

jQuery取消ajax请求的方法

两边静止的广告条

jQuery实现将页面上HTML标签换成另外标签的方法

对联广告

jQuery实现延迟跳转的方法

jquery实现动态改变div宽度和高度

jquery实现图片左右切换的方法

javascript实现控制的多级下拉菜单

JS实现浏览器菜单命令

js实现发送验证码后的倒计时功能

精品推荐
分类导航