1 Star 0 Fork 24

胖虎/javascript_daily_practise

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
practise13.html 875 Bytes
一键复制 编辑 原始数据 按行查看 历史
欸嘿 提交于 2021-08-15 21:01 . commit
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>方向键控制div</title>
</head>
<body>
<div id="box1"></div>
</body>
</html>
<script type="text/javascript">
// 使div更具不同方向键向不同方向移动
var box1 = document.getElementById("box1")
document.onkeydown = function(e){
var speed = 20;
// 按下shift后速度加快
if(e.shiftKey)
speed = 50;
if(e.keyCode == 38){
box1.style.top = (box1.offsetTop - speed) + "px"
}
else if(e.keyCode == 40){
box1.style.top = (box1.offsetTop + speed) + "px"
}
else if(e.keyCode == 37){
box1.style.left = (box1.offsetLeft - speed) + "px"
}
else if(e.keyCode == 39){
box1.style.left = (box1.offsetLeft + speed) + "px"
}
}
</script>
<style type="text/css">
#box1{
width: 6.25rem;
height: 6.25rem;
background-color: red;
position: absolute;
}
</style>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/huangweidd/javascript_daily_practise.git
git@gitee.com:huangweidd/javascript_daily_practise.git
huangweidd
javascript_daily_practise
javascript_daily_practise
master

搜索帮助