分步动画

Posted divtab

tags:

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

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

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

    <style type="text/css">
        .box 
            width: 200px;
            height: 400px;
            background-color: red;
            transition: width 1s linear,
                height 1s linear 1s,
                background-color 1s linear 2s;
        

        .box:hover 
            width: 600px;
            height: 800px;
            background-color: green;
        
    </style>
</head>

<body>

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

</html>

以上是关于分步动画的主要内容,如果未能解决你的问题,请参考以下文章

css动画

动画:面试如何轻松反转链表?

在 Chrome 上使用 display:none 重置 GIF 动画的正确方法

vivo手机怎么截取动图?

【Android 动画】动画详解之补间动画(一)

Android动画之视图动画和属性动画