动画多状态写法2

Posted divtab

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了动画多状态写法2相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        .box 
            /* infinite 无限循环
            alternate 逆播  */
            animation: changes 3s infinite alternate;
        
        /* 百分比是相对动画时长 */
        @keyframes changes 
            0% 
                width: 100px;
                height: 100px;
                background-color: red;
            
            30% 
                width: 200px;
                height: 400px;
                background-color: blue;
            
            60% 
                width: 300px;
                height: 600px;
                background-color: skyblue;
            
            100% 
                width: 600px;
                height: 800px;
                background-color: #ccc;
            
        
    </style>
</head>

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

</html>

以上是关于动画多状态写法2的主要内容,如果未能解决你的问题,请参考以下文章

获取非行间样式函数及多物体动画(原生js写法)

web实现太极图背景色线性渐变旋转动画htmlcssafterbeforelineargradienttransformrotateanimation

15. React 中 Component 的三种写法

单选多选样式写法

iOS开发-51案例学习:动画新写法删除子视图视图顺序延迟方法button多功能使用方法及icon图标和启动页设置

正则限制输入为数字,且最多输入2位小数 之 新写法