要求:
物体根据不同的方向键按下,会向不同的方向移动,当用户同时又按下ctrl键时,物体移动速度发生变化
思路:
创建一个div,并给它绑定一个键盘事件,事件中又给方向键绑定物体移动事件
代码演示:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
#box1{
width: 50px;
height: 50px;
background-color: red;
position: absolute;
border-radius: 50%;
}
</style>
<script type="text/javascript">
window.onload = function(){
document.onkeydown = function(event){
// 定义一个变量,来表示移动的速度
let speed = 10;
// 按下ctrl后,速度加快
if (event.ctrlKey){
speed = 50;
}
switch(event.keyCode){
case 37:
box1.style.left = box1.offsetLeft - speed +"px";
break;
case 39:
box1.style.left = box1.offsetLeft + speed +"px";
break;
case 38:
box1.style.top = box1.offsetTop - speed +"px";
break;
case 40:
box1.style.top = box1.offsetTop + speed +"px";
break;
}
};
};
</script>
</head>
<body>
<div id="box1"></div>
</body>
</html>
运行展示:
喜欢小编的关注、点赞走一波呦,后期会不定期分享更多Python、JS和前端相关知识