时间:2021-07-01 10:21:17 帮助过:18人阅读
我们先来看一下运行后的效果图:
以下是经过小编测试后的全部代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>鼠标跟随十字JS特效代码</title> </head> <body style="margin: 0;"> <p id="html"></p> <script type="text/javascript"> // var ox = document.createElement('p'); var oy = document.createElement('p'); ox.style.width = '100%'; ox.style.height = '1px'; ox.style.backgroundColor = '#ddd'; ox.style.position = 'fixed'; ox.style.left = 0; document.body.appendChild(ox); oy.style.height = '100%'; oy.style.width = '1px'; oy.style.backgroundColor = '#ddd'; oy.style.position = 'fixed'; oy.style.top = 0; document.body.appendChild(oy); document.onmousemove = function(e){ var e = e || event; var x = e.pageX; var y = e.pageY; ox.style.top = y + 'px'; oy.style.left = x + 'px'; document.getElementById('html'). innerHTML = 'x : ' + x + '<br/>y : ' + y; }; </script> <p>更多代码请访问:<a href="http://www.gxlcms.com/" target="_blank">脚本之家</a></p> </body> </html>
大家在测试的时候可以根据需求来调整JS里的代码X表示横坐标,Y表示纵坐标。
相关推荐:
如何实时获取鼠标的当前坐标
Javascript事件与鼠标坐标的属性
JavaScript怎样才能获取元素的坐标
以上就是实例详解JS实现十字坐标跟随鼠标效果的详细内容,更多请关注Gxl网其它相关文章!