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

分步动画

时间:2019-09-26 09:46:39      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:width   title   lin   body   pre   idt   css   red   utf-8   

<!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>

分步动画

标签:width   title   lin   body   pre   idt   css   red   utf-8   

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

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