创建一个div,在div上按键盘中的上下左右,这个div会根据你所按的键盘来进行移动,每次移动10px,上哈左右,div会有四个颜色变化,div中的蚊子随着上下左右而变化, 不能穿出图片 超出弹出提示框
3条回答 默认 最新
- CSDN专家-赖老师(软件之家) 2021-11-12 20:27关注
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>方向键移动div</title> <style> #box1 { width: 200px; height: 200px; background-color: aqua; position: absolute; } </style> <script> window.onload = function () { var b1 = document.getElementById("box1"); var distance = 10; alert("按下ctrl键加速,按下alt键减速"); document.onkeydown = function (event) { event = event || window.event; if (event.ctrlKey) { distance = 40; } if (event.shiftKey) { distance = 5; } if (event.keyCode === 37) { b1.style.left = b1.offsetLeft - distance + "px"; } else if (event.keyCode === 38) { b1.style.top = b1.offsetTop - distance + "px"; } else if (event.keyCode === 39) { b1.style.left = b1.offsetLeft + distance + "px"; } else if (event.keyCode === 40) { b1.style.top = b1.offsetTop + distance + "px"; } }; }; </script> </head> <body> <div id="box1"></div> </body>
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 1无用
悬赏问题
- ¥15 问题重发,R语言:代码运行过程中出现如下警告,请求如何解决!
- ¥15 神经网络模型一直不能上GPU
- ¥15 苍穹外卖拦截器token为null
- ¥15 pyqt怎么把滑块和输入框相互绑定,求解决!
- ¥20 wpf datagrid单元闪烁效果失灵
- ¥15 券商软件上市公司信息获取问题
- ¥100 ensp启动设备蓝屏,代码clock_watchdog_timeout
- ¥15 Android studio AVD启动不了
- ¥15 陆空双模式无人机怎么做
- ¥15 想咨询点问题,与算法转换,负荷预测,数字孪生有关