放慢 bootstrap 微调器

Slowing down the bootstrap spinner

我目前正在使用 bootstrap 并使用生长微调器: https://getbootstrap.com/docs/4.2/components/spinners/

请问有什么方法可以控制速度,放慢动画速度吗?

谢谢!

您可以使用 css 属性 animation-duration 执行此操作。 例如,要减慢动画速度,增加动画持续时间:

.spinner-border {
    animation-duration: 2s;
}