15-CSS动画模块

2018-10-29  本文已影响0人  喝酸奶要舔盖__

动画属性

 div{
            width: 100px;
            height: 100px;
            background-color: green;
            /*1.告诉系统执行哪个动画*/
            animation-name: sport;
            /*3.告诉系统动画时长*/
            animation-duration: 4s;
        }

        /*2.指定动画名称和动画运动效果*/
        @keyframes sport {
            from{
                margin-left: 0;
                margin-top: 0;
            }
            to{
                margin-left: 500px;
                margin-top: 500px;
            }
        }

动画状态属性

动画模块连写

<style>
        div{
            width: 100px;
            height: 100px;
            background-color: red;
            animation: sport 2s 2s linear alternate 3;
        }

        @keyframes sport {
            from{
                margin-left: 0;
            }

            to{
                margin-left: 500px;
            }
        }
</style>
上一篇 下一篇

猜你喜欢

热点阅读