码迷,mamicode.com
首页 > 其他好文 > 详细

动画多状态写法

时间:2019-09-26 09:41:55      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ram   animation   body   head   nim   linear   change   div   htm   

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        .box {
            width: 200px;
            height: 200px;
            background-color: red;
            /* animation: change  1s  2s; */
            /* forwards 在动画后 后固定*/
            animation: change1 1s linear forwards,
                change2 1s linear 1s forwards,
                change3 1s linear 2s forwards;
        }

        @keyframes change1 {

            /* 宽200 变成 宽400*/
            from {
                width: 200px;
            }

            to {
                width: 400px;
            }
        }

        @keyframes change2 {

            /*高200 变成 高度400 */
            from {
                width: 400px;
                height: 200px;
            }

            to {
                width: 400px;
                height: 400px;
            }
        }

        @keyframes change3 {

            /*背景色红色 变成 绿色*/
            from {
                width: 400px;
                height: 400px;
                background-color: red;
            }

            to {
                width: 400px;
                height: 400px;
                background-color: green;
            }
        }
    </style>
</head>

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

</html>

动画多状态写法

标签:ram   animation   body   head   nim   linear   change   div   htm   

原文地址:https://www.cnblogs.com/divtab/p/11588657.html

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