首页 > 其他 > 详细

小球落下的动画

时间:2020-02-17 15:18:37      阅读:62      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .outer{
            height: 300px;
            border-bottom: 10px solid black;
            margin: 0 auto;
            overflow: hidden;
        }
        .box2{
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: chartreuse;
            animation:boll 3s forwards ease-in infinite;
        }
        @keyframes boll {
            from{
                margin-top: 0px;
            }
            33%{
                margin-top: 250px;
            }
            66%{
                margin-top: 100px;
                animation-timing-function: ease-out;
            }
            to{
                animation-timing-function: ease-in;
                margin-top: 250px;
            }
        }
    </style>
</head>
<body>
    <div class="outer">
        <div class="box2"></div>
    </div>
</body>
</html>

小球落下的动画

原文:https://www.cnblogs.com/kukai/p/12321502.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!