N4N*_*4rd 5 animation spinner bootstrap-4
我目前正在使用 bootstrap 并使用增长微调器: https://getbootstrap.com/docs/4.2/components/spinners/
您知道是否有任何方法可以控制速度并减慢动画速度?
谢谢 !
小智 8
您可以使用 css 属性来做到这一点animation-duration。例如,要减慢动画速度,请增加动画持续时间:
.spinner-border {
animation-duration: 2s;
}
Run Code Online (Sandbox Code Playgroud)