Answer the question
In order to leave comments, you need to log in
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
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question