A
A
A person from Kazakhstan2016-11-16 09:19:13
css
A person from Kazakhstan, 2016-11-16 09:19:13

Why doesn't animation work in -moz-?

Doesn't work in ;
-moz-
apple-webkit-
codepen.io/Geyan/pen/ObRWoE?editors=1100
This enSO question
Why?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alex Glebov, 2016-11-16
@SkiperX

1) a property without a prefix is ​​written at the end so that when browsers start supporting it, it will override those with a prefix.

-webkit-animation: dinamic 1s infinite steps(4);
-moz-animation: dinamic 1s infinite steps(4);
animation: dinamic 1s infinite steps(4);

2) the last version of the mozilla browser that supported -moz-animation was released in 2012. no one uses it anymore. Mozilla has long supported animation without a prefix.
caniuse.com/#search=animation
only use -webkit-animation for old
apple-webkit safaris - this doesn't exist at all

D
Dmitry Klusevich, 2016-11-16
@dimka-dooz

backgroun-image property that is not animated via keyframes. Like only webkit, it can. But there are other ways to achieve this effect.

K
Kovalsky, 2016-11-16
@lazalu68

Pam param pam, classic CSS animation is done with sprites using step , something like this .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question