user2266175
user2266175

Reputation: 131

CSS3 perspective transform is not working in firefox

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

Answers (2)

Hasanavi
Hasanavi

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

Reptar
Reptar

Reputation: 372

Take a look at this website HERE ,

It shows you the code, and it works in chrome and firefox (I tested it) it uses @keyframes

Upvotes: 0

Related Questions