这是一个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=gb2312"> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>jquery实现图层可随意拖动效果_武鸣人</title> <style type="text/css"> body{font-size:12px;margin:0;padding:0;} .wuming_ren{width:300px;height:200px;border:1px solid #936;} .wuming_ren .hot{width:100%;height:30px;border-bottom:1px solid #936;line-height:30px;background:#999;} .wuming_ren .content{height:170px;} .s0{background:#F60;left:100px;top:200px;} .s1{background:#396;left:20px;top:400px;} .s2{background:#9CF;left:300px;top:10px;} </style> <script src="/img/jquery_wuming_ren.js" type="text/javascript"></script> <script src="/img/jquery.anyDrag.min.js" type="text/javascript"></script> <script type="text/javascript"> $(function(){ //$(".wuming_ren").anyDrag() $(".wuming_ren").anyDrag({obj:".hot",maxTop:true,alpha:0.5}); /** /* 【参数说明】 /* obj 拖动热区,拖动所选对象的什么位置 可拖动,默认为 对象整体可拖动。 如果只要标题栏可拖动 请传入 选择器(class 或是 id) /* maxTop 拖动放开后 是否在最顶层,默认为false 不在最顶层。 /* alpha 拖动时 被拖动对象的透明度,默认为1. 不透明。 **/ }) </script> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> 需要加载js文件,请刷新后看效果。 <div class="wuming_ren s0"> <div class="hot">武鸣人一号</div> <div class="content"><a href="https://wuming.ren" target="_blank">武鸣人</a>,各种信息免费发布,资源共享合作共赢!</div> </div> <div class="wuming_ren s1"> <div class="hot">武鸣人二号</div> <div class="content"><a href="https://wuming.ren" target="_blank">武鸣人</a>,各种信息免费发布,资源共享合作共赢!</div> </div> <div class="wuming_ren s2"> <div class="hot">武鸣人三号</div> <div class="content"><a href="https://wuming.ren" target="_blank">武鸣人</a>,各种信息免费发布,资源共享合作共赢!</div> </div> </body> </html>
本文来自武鸣人网站,转载请注明出处