动画多状态写法2

不羁的心 提交于 2019-11-30 12:44:30
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>

    <style type="text/css">
        .box {
            animation: change 3s forwards;
        }

        /* 百分比是相对动画时长 */
        @keyframes change {
            0% {
                width: 100px;
                height: 100px;
                background-color: #ccc;
            }

            20% {
                width: 200px;
                height: 300px;
                background-color: #aaa;
            }

            50% {
                width: 200px;
                height: 400px;
                background-color: blue;
            }

            80% {
                width: 600px;
                height: 500px;
                background-color: yellow;
            }

            100% {
                width: 800px;
                height: 800px;
                background-color: red;
            }
        }
    </style>
</head>

<body>

    <div class="box"></div>
</body>

</html>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!