继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

JavaScript速度动画之分享窗口

Leal_Gullden
关注TA
已关注
手记 15
粉丝 23
获赞 267

效果图
图片描述
图片描述

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
<!--    <link rel="stylesheet" type="text/css" href="../css/demo3.css">
    <script src="../js/demo3.js"></script> -->
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        #box{
            width: 200px;
            height: 300px;
            background-color: #abb88e;
            position: relative;
            left: -200px;

        }
        #share{
            width: 50px;
            height: 100px;
            background-color: #69c;
            position: absolute;
            right: -50px;
            top: 50px;
            font-size: 25px;
            line-height: 50px;
            text-align: center;
        }
    </style>
    <script type="text/javascript">
        window.onload=function(){
            var box = document.getElementById('box');
            box.onmouseover=function(){
                startMove(0);
            };
            box.onmouseout=function(){
                startMove(-200);
            };
        };
        var timer = null;
        function startMove(oTarget){
            var box = document.getElementById('box');

            clearInterval(timer);
            timer = setInterval(function(){
                var flag = oTarget - box.offsetLeft;
                var speed = 0;
                if(flag>0){
                    speed=Math.ceil(flag/20);
                }else if(flag<0){
                    speed=Math.floor(flag/20);
                }
                box.style.left = box.offsetLeft + speed + "px";
                if(box.offsetLeft===oTarget){
                    clearInterval(timer);
                }
            },30);
        }
    </script>
</head>
<body>
    <div id="box">
        <div id="share">分<br>享</div>
    </div>
</body>
</html>
打开App,阅读手记
18人推荐
发表评论
随时随地看视频慕课网APP

热门评论

box前不应该有0,是不是写错了?

查看全部评论