码迷,mamicode.com
首页 > 编程语言 > 详细

javascript按键盘上/右/下/左箭头加速运动

时间:2018-02-11 20:02:11      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:position   div   tee   meta   cti   near   htm   body   osi   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>javascript加速运动</title>
    
</head>
<body>
<button style="width:80px; height:40px; line-height:40px; text-align:center; background:linear-gradient( to left ,#999,#d96972,#cc1233,#d96972); position:fixed; top:200px; left:200px;border:0">加速</button>
    <script type="text/javascript">
        var btn = document.getElementsByTagName(button)[0];
        //创建一个div
        var div = document.createElement(div);
        document.body.appendChild(div);
        div.style.width=100px;
        div.style.height=100px;
        div.style.backgroundColor=red;
        div.style.position=absolute;
        div.style.left=0;
        div.style.top=0;
        var speed = 5;
        btn.onclick=function(){
            speed++;
        }
        console.log(速度+speed);
        //onkeydown 事件会在用户按下一个键盘按键时发生。
        document.onkeydown = function(e){
            // console.log(e)//打印e就知道以下数字的由来
            switch (e.which) {
                //向上
                case 38:
                    div.style.top = parseInt(div.style.top) - speed + px;
                    break;//来阻止代码自动地向下一个 case 运行
                //向下
                case 40:
                    div.style.top = parseInt(div.style.top) + speed + px;
                    break;
                //向左
                case 37:
                    div.style.left = parseInt(div.style.left) - speed + px;
                    break;
                //向右
                case 39:
                    div.style.left = parseInt(div.style.left) + speed + px;
                    break;
            }
        }
    </script>
    
</body>
</html>

 

javascript按键盘上/右/下/左箭头加速运动

标签:position   div   tee   meta   cti   near   htm   body   osi   

原文地址:https://www.cnblogs.com/huanghuali/p/8442596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!