I
I
Ivan Auchynnikau2015-08-13 21:30:32
Animation
Ivan Auchynnikau, 2015-08-13 21:30:32

How to make animation work in Mozilla?

Tell me what could be the problem?
@keyframes blink {
0% {
box-shadow: 0 0 10px #000302;
}
50% {
box-shadow: 0 0 0;
}
100% {
box-shadow: 0 0 10px #000302;
}
}
@-o-keyframes blink {
0% {
box-shadow: 0 0 10px #000302;
}
50% {
box-shadow: 0 0 0;
}
100% {
box-shadow: 0 0 10px #000302;
}
}
@-webkit-keyframes blink {
0% {
box-shadow: 0 0 10px #000302;
}
50% {
box-shadow: 0 0 0
}
100% {
box-shadow: 0 0 10px #000302;
}
}
@-moz-keyframes blink {
0% {
box-shadow: 0 0 10px #000302;
}
50% {
box-shadow: 0 0 0;
}
100% {
box-shadow: 0 0 10px #000302;
}
}
.blink {
animation: blink 1.0s linear infinite;
-webkit-animation: blink 1.0s linear infinite;
-ms-animation: blink 1.0s linear infinite;
-o-animation: blink 1.0s linear infinite;
-moz-animation: blink 1.0s linear infinite;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Zuev, 2015-08-13
@otzis

The answer is easily found by a search engine

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question