通过js脚本来实现网页中的文字可用鼠标压住拖动移动效果,可自由拖动显示,结合自己的需求来修改即可。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效,www.wuming.ren"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <TITLE>js实现鼠标拖动文字移动特效_武鸣人</TITLE> <script type="text/javascript"> function drag(o){ o=document.getElementById(o); o.style.position="absolute"; o.onmousedown=function(e){ e=e||window.event; var x=e.layerX||e.offsetX; var y=e.layerY||e.offsetY; document.onmousemove=function(e){ e=e||window.event; o.style.left=(e.clientX-x)+"px"; o.style.top=(e.clientY-y)+"px";}; document.onmouseup=function(){document.onmousemove=null;o.onmousedown=null;};};} </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> <div id="cen"> <p class="control" style="margin-bottom:10px;" title="拖拽" onmousedown="drag('cen')">点俺拖拽</p> <p>武鸣人</p> <p>wuming.ren</p> <p>各种信息免费发布,资源共享合作共赢。</p></div> </BODY> </HTML>
本文来自武鸣人网站,转载请注明出处