WOW icon indicating copy to clipboard operation
WOW copied to clipboard

Bug Firefox animeted twice times

Open ricardogobbosouza opened this issue 9 years ago • 10 comments

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

ricardogobbosouza avatar Oct 20 '15 15:10 ricardogobbosouza

Same here using Firefox 41.0.1 on Ubuntu/Linux. It's the same with just F5. It animates just once using Chrome.

ben72 avatar Oct 20 '15 19:10 ben72

Using Firefox 41.0.2 on Windows 7 it animates twice.

ricardogobbosouza avatar Oct 20 '15 19:10 ricardogobbosouza

Thank you guys. I will look into this.

attilaolah avatar Oct 20 '15 19:10 attilaolah

Same problem. Using Firefox 42 on Windows 10. Hope it will be fixed ASAP!

happyduong avatar Dec 14 '15 03:12 happyduong

Hi, Same problem. Using Firefox 44.0.2 on Windows 10.

gtraxx avatar Feb 15 '16 09:02 gtraxx

Having the same problem here. Any hotfixes out there right now?

henryw4k avatar Feb 25 '16 18:02 henryw4k

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 avatar Mar 03 '16 16:03 vchouhan

vchouhan's solution worked for me. thank you!

wu88 avatar Mar 04 '16 18:03 wu88

IE doesn't shows the animated elements using that solution

mbtocalli avatar Mar 06 '17 00:03 mbtocalli

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 }

SfnElAbbadi avatar Feb 13 '19 16:02 SfnElAbbadi