I am really liking the style of Animate.css and I am currently working on configuring the "flash" feature.
To achieve the desired effect, I have introduced an additional class called ".promptflash".
My goal is to make the flash occur 3 times, followed by a delay of 5 seconds, and then repeat this loop 3 times before delaying again...
Furthermore, I am attempting to slow down the initial flash animation as it currently happens very quickly by default.
If you are interested in exploring more features of Animate.CSS, you can visit their website here.
.promptflash {
animation: 0.3s infinite;
animation-delay: 2s;
}