小球落下的动画

最后都变了- 提交于 2020-02-17 14:25:59
<!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>
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!