键盘操控移动

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style >
        #box1{
            width: 100px;
            height: 100px;
            background-color: yellowgreen;
            position: absolute;
        }
    </style>
    <script type="text/javascript">
        window.onload=function () {
            document.onkeydown=function (event) {
                event=event||window.event;
               switch (event.keyCode) {
                   case 37:
                       box1.style.left=box1.offsetLeft-10+"px";
                       break;
                   case 39:
                       box1.style.left=box1.offsetLeft+10+"px";
                       break;
                   case 38:
                       box1.style.top=box1.offsetTop-10+"px";
                       break;
                   case 40:
                       box1.style.top=box1.offsetTop+10+"px";
                       break;
               }

            }

        }
    </script>
</head>
<body>
<div id="box1"></div>
</body>
</html>

使用上下左右进行移动

猜你喜欢

转载自blog.csdn.net/weixin_44552543/article/details/89855239
今日推荐