# transition 过度

需要条件触发,比如点击,hover等

transition: property duration timing-function delay;

描述
transition-property 规定设置过渡效果的 CSS 属性的名称。
transition-duration 规定完成过渡效果需要多少秒或毫秒。
transition-timing-function 规定速度效果的速度曲线。
transition-delay 定义过渡效果何时开始。

<style>
    div{
        width: 100px;
        height: 100px;
        background-color: red;
        transition: width 4s ease-in-out, height 1s;
        transition: all 4s;

    }
    div:hover{
        width: 200px;
        height: 200px;
    }
</style>

<div></div>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17