通过js来实现网页中图层可随意拖动效果,简单实用的鼠标拖动图层js脚本,这个图层拖动特效兼容当前主流浏览器。
<html> <head> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> <title>js简单制作图层可拖动特效_武鸣人</title> <style type="text/css"> div{position:absolute;width:200px;height:100px;background:#FFFADC;border:1px solid #CC6600;} </style> </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> <div id="www_wuming_ren"><a href="https://www.wuming.ren" target="_blank">武鸣人</a>,各种信息免费发布,资源共享合作共赢<br />这个图层可随意拖动</div> <script type="text/javascript"> var www_wuming_ren = document.getElementById('www_wuming_ren'); www_wuming_ren.onmousedown = function(bbb){ if(!bbb)bbb=window.event; var ox = bbb.layerX?bbb.layerX:bbb.offsetX; var oy = bbb.layerY?bbb.layerY:bbb.offsetY; www_wuming_ren.onmousemove = function(ccc){ if(!ccc)ccc=window.event; www_wuming_ren.style.left = ccc.clientX - ox + 'px'; www_wuming_ren.style.top = ccc.clientY - oy + 'px'; } www_wuming_ren.onmouseup = function(){ www_wuming_ren.onmousemove = null; } }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </body> </html>
本文来自武鸣人网站,转载请注明出处