Reputation: 131
I am trying to create a css transform for dropdown menu, but it does not work in firefox, from other posts, I tried this:
...
-moz-animation: flipInX 3s;
...
but it doesn't work in firefox. this is the test test page:
http://leamratech.com/test/test/test.html
Upvotes: 0
Views: 129
Reputation: 8625
In your animation CSS alongside @-webkit-keyframes flipInX {} you need to add @-moz-keyframes flipInX {} as well. that should resolve your issue.
Upvotes: 1