【发布时间】:2022-01-11 02:18:28
【问题描述】:
我目前正在使用引导程序并使用增长微调器: https://getbootstrap.com/docs/4.2/components/spinners/
不知道有没有什么办法可以控制速度和减慢动画的速度?
谢谢!
【问题讨论】:
标签: animation bootstrap-4 spinner
我目前正在使用引导程序并使用增长微调器: https://getbootstrap.com/docs/4.2/components/spinners/
不知道有没有什么办法可以控制速度和减慢动画的速度?
谢谢!
【问题讨论】:
标签: animation bootstrap-4 spinner
您可以使用 css 属性 animation-duration 执行此操作。
例如,要减慢动画速度,请增加 animation-duration:
.spinner-border {
animation-duration: 2s;
}
【讨论】: