Skip to content
Advertisement

Bug using keyframes on bootstrap progress bar

I’m trying to animate a Bootstrap 5 progress bar when my page loads. This seems to work, but on the other hand it overrides the basic bootstrap animation.

https://codepen.io/Gwentey/pen/gOeQVGZ

Here is a snippet to view the problem I am having. When you load the page, the progress bar goes from 0% to 20% and the animation no longer works…

When you load the page, the progress bar goes from 0% to 20% and the animation no longer works… When the page loads I want there to be an animation from 0 to 20 (working but stops the animation). Then the user has to click to get to 40, then 60, then 80, and finally 100. My problem is that the animation I added overwrites (I believe) Bootstrap’s animation. So when the user goes from 20 to 40 (with the button) there is no effect, and it creates an abrupt change… (see codepen snippet)

CSS :

JavaScript

HTML :

JavaScript

I do not put the javascript because it only serves to detect the click on the button and passed from level (level-20 -> level-40 -> level-60 -> level-80 -> level-100)

Thanks in advance

Advertisement

Answer

I would use an transition instead of keyframes (and add the initial class using js):

JavaScript
JavaScript
JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement