如何设置CSS旋转的时间呢?
transform: rotate(45deg); -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease;
在上面的代码中,我们使用了transform属性来让元素旋转了45度。我们为元素添加了过渡效果,以实现旋转的“缓慢”动画效果。
通过设置-all 0.5s ease,在0.5秒的时间里以缓动的方式实现了旋转效果的过渡动画。
你可以根据项目需求来调整过渡时间的长度和速度,使你的动画效果更加自然,更加灵活。