1.transition 属性
简介
简单用法
代码
transition: background 0.5s linear;意义
示例
<button>按钮</button>button { padding:1em 2em; background: #fff; transition: background 1s linear; } button:hover { background: deeppink; }
简写transition全部参数
transition全写
时间函数Steps()
参数
示例

添加多个过渡

添加移除类触发过渡

Last updated
Was this helpful?
