Im looking to add code to my stores theme, Debut, that adds an animated announcement bar that floats left and continuously repeats itself on a loop. I have a preset code that animates my store’s announcement bar message, but it does not repeat one after the other continuously like I want it to. Can somebody provide the code for this or help me? Thanks!
Side to side is looking for a “marquee” animation/effect , several topics on that for different themes.
Keep in mind any solution using the html tag is using a depreciated html tag.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/marquee
I see that I need a marquee effect but I want to know if there is already a code somebody has to solve this? Or do I need to hire an expert?
Hello @threadcount
I assume that you already have the code for animation but it does not loop.
You can add this CSS property to make it loop forever
animation-iteration-count: infinite;
More info: https://www.w3schools.com/cssref/css3_pr_animation-iteration-count.php
Hope that helps!