WOW
WOW copied to clipboard
Bug Firefox animeted twice times
In the new version of Firefox the WOW.js being animated twice if not in cache.
See http://mynameismatthieu.com/WOW/ and pess CTRL+F5
Same here using Firefox 41.0.1 on Ubuntu/Linux. It's the same with just F5
.
It animates just once using Chrome.
Using Firefox 41.0.2 on Windows 7 it animates twice.
Thank you guys. I will look into this.
Same problem. Using Firefox 42 on Windows 10. Hope it will be fixed ASAP!
Hi, Same problem. Using Firefox 44.0.2 on Windows 10.
Having the same problem here. Any hotfixes out there right now?
I'm having the same issue and I was able to fix it by updating my css. The elements are added visibility visible style and if the elements visibility is not hidden it triggers the animation 2 times.
.wow {
visibility:hidden;
}
vchouhan's solution worked for me. thank you!
IE doesn't shows the animated elements using that solution
I'm having the same issue and I fixed it. Solution : add this code to the element that you want to animate: style="visibility: hidden; animation-name: none;" or you just override wow style : .wow { visibility: hidden; animation-name: none; } and you put the animation class Inside animated class. exemple : .animated { //Your animation definition here }