div {width: 200px;height: 200px;background-color: red;/* transition: 要过渡的属性 花费时间 运动曲线 何时开始 */transition: width 1s, height 1s;/* transition: all 1s */}div:hover {width: 500px;height: 500px;}
运动曲线(可选)
| 属性值 | 描述 |
|---|---|
| linear | 匀速 |
| ease | 逐渐变慢(默认值) |
| ease-in | 加速 |
| ease-out | 减速 |
| ease-in-out | 先加速后减速 |
| steps() | 间隔数量(步长) |
花费时间(必选)
单位:s
何时开始(可选)
默认值:0s
