JS实现盒子跟着鼠标移动及键盘方向键控制盒子移动效果示例
程序员文章站
2022-06-19 19:13:13
本文实例讲述了js实现盒子跟着鼠标移动及键盘方向键控制盒子移动。分享给大家供大家参考,具体如下:
1. 盒子跟着鼠标移动
本文实例讲述了js实现盒子跟着鼠标移动及键盘方向键控制盒子移动。分享给大家供大家参考,具体如下:
1. 盒子跟着鼠标移动
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <title>document</title> <style> *{ margin:0; padding:0; } div{ width: 100px; height: 100px; background: red; position: absolute; } </style> </head> <body> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <script> document.onmousemove=function fn(ev) { var event=window.event||ev; var odiv=document.getelementsbytagname("div"); for(x=0;x<odiv.length;x++){ odiv[x].style.transition=(x*0.5)+"s"; odiv[x].style.left=event.clientx+"px"; odiv[x].style.top=event.clienty+"px"; } } </script> </body> </html>
2. 键盘方向键控制盒子移动
<html> <head> <meta charset="utf-8" /> <style type="text/css"> div{ width:100px; height:100px; background: red; position:absolute; left:100px; top:100px; transition: 0.1s; } </style> <script> window.onload = function(){ var odiv = document.getelementbyid("div1"); var left = false; var right = false; var top = false; var bottom = false; document.onkeydown = function(ev){ var oevent = ev || event; var keycode = oevent.keycode; switch(keycode){ case 37: left=true; break; case 38: top=true; break; case 39: right=true; break; case 40: bottom=true; break; } }; setinterval(function(){ if(left){ odiv.style.left = odiv.offsetleft-10+"px"; }else if(top){ odiv.style.top = odiv.offsettop-10+"px"; }else if(right){ odiv.style.left = odiv.offsetleft+10+"px"; }else if(bottom){ odiv.style.top = odiv.offsettop+10+"px"; } },50); document.onkeyup = function(ev){ var oevent = ev || event; var keycode = oevent.keycode; switch(keycode){ case 37: left=false; break; case 38: top=false; break; case 39: right=false; break; case 40: bottom=false; break; } } } </script> </head> <body> <div id="div1"></div> </body> </html>
感兴趣的朋友可以使用在线html/css/javascript代码运行工具:http://tools.jb51.net/code/htmljsrun测试一下运行效果。
更多关于javascript相关内容感兴趣的读者可查看本站专题:《javascript页面元素操作技巧总结》、《javascript操作dom技巧总结》、《javascript切换特效与技巧总结》、《javascript动画特效与技巧汇总》、《javascript错误与调试技巧总结》、《javascript数据结构与算法技巧总结》及《javascript数学运算用法总结》
希望本文所述对大家javascript程序设计有所帮助。
下一篇: 冬季天天洗头易感冒脱发 如何洗头更健康