This time I will bring you JS implementationmouse following special effects, what are the notes of JS implementing mouse following special effects, the following is a practical case, let’s take a look .
The following is all the code after testing by the editor:
<!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> </body> </html>
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website!
Recommended reading:
How Webpack builds Electron applications
Detailed explanation of Spring life cycle and container extension usage
The above is the detailed content of JS implements mouse following special effects. For more information, please follow other related articles on the PHP Chinese website!