码迷,mamicode.com
首页 > 移动开发 > 详细

JavaScript div移动动画

时间:2018-08-02 16:05:58      阅读:765      评论:0      收藏:0      [点我收藏+]

标签:head   etl   padding   round   doc   asc   utf-8   time   idt   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }

        div {
            margin-top: 10px;
            width: 100px;
            height: 50px;
            background-color: purple;
            position: absolute;
        }
    </style>
</head>
<body>
<input type="button" value="移动到400px" id="bt1"/>
<input type="button" value="移动到800px" id="bt2"/>

<div id="dv"></div>
<script src="common.js"></script>
<script>
    my$("bt1").onclick = function () {
        //获取div当前的left值
        var left = my$("dv").offsetLeft;
        var step = 10;
        timeId = setInterval(function () {
            if (left <= 400) {
                left += step;
                my$("dv").style.left = left + "px";
                console.log(left);
            } else {
                clearInterval(timeId);
            }
        }, 10)
    };
    my$("bt2").onclick = function () {
        //获取div当前的left值
        var left = my$("dv").offsetLeft;
        var step = 10;
        timeId = setInterval(function () {
            if (left <= 800) {
                left += step;
                my$("dv").style.left = left + "px";
                console.log(left);
            } else {
                clearInterval(timeId);
            }
        }, 10)
    };
</script>
</body>
</html>

 

JavaScript div移动动画

标签:head   etl   padding   round   doc   asc   utf-8   time   idt   

原文地址:https://www.cnblogs.com/cuilichao/p/9407272.html

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