Home > Net >  Slowing down the bootstrap spinner
Slowing down the bootstrap spinner

Time:12-07

I am currently working with bootstrap and using the grow spinner: https://getbootstrap.com/docs/4.2/components/spinners/

Do you know if there is any way to control the speed and slow down the animation ?

Thanks !

CodePudding user response:

You can do this with the css property animation-duration. For example, to slow the animation down, increase the animation-duration:

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