欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JS实现十字坐标跟随鼠标效果

程序员文章站 2022-04-18 21:49:39
本次小编给大家带来一个js的效果,实现根据浏览器的窗口大小出现十字坐标并跟随鼠标移动的效果,还可以计算出实时的坐标数值。 我们先来看一下运行后的效果图: 以下是经过...

本次小编给大家带来一个js的效果,实现根据浏览器的窗口大小出现十字坐标并跟随鼠标移动的效果,还可以计算出实时的坐标数值。

我们先来看一下运行后的效果图:

JS实现十字坐标跟随鼠标效果

以下是经过小编测试后的全部代码:

<!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;">
 <div id="html"></div>
 <script type="text/javascript">
 //
 var ox = document.createelement('div');
 var oy = document.createelement('div');
 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="//www.jb51.net/" target="_blank"></a></p>
</body>
</html>

大家在测试的时候可以根据需求来调整js里的代码x表示横坐标,y表示纵坐标。

在学习的时候如果还有任何疑问可以在下方的留言区讨论,感谢你对的支持。