linear:匀速播放,即动画效果从开始到结束的速度保持一致。
ease:缓慢开始,然后加速,最后再缓慢结束。这是默认值。
ease-in:缓慢开始,然后加速。
ease-out:缓慢结束,然后减速。
ease-in-out:缓慢开始,加速,然后再缓慢结束。
.box {
width: 100px;
height: 100px;
background-color: red;
transition: width 2s;
transition-timing-function: ease-in-out;
}
.box:hover {
width: 200px;
}
本文为翻滚的胖子原创文章,转载无需和我联系,但请注明来自猿教程iskeys.com