Answer the question
In order to leave comments, you need to log in
CSS animation not working?
#load {
position: absolute;
}
#load > B {
color: red;
animation: nev 1s infinite alternate;
}
@keyframes nev {
0% {
transform: rotateY(0deg);
}
100% {
transform: rotateY(-360deg);
}
}
<div id="load">
<b>S</b>ynacs
</div>
#load {
position: absolute;
animation: nev 1s infinite alternate;
}
#load > b {
color: red;
}
@keyframes nev {
0% {
transform: rotateY(0deg);
}
100% {
transform: rotateY(-360deg);
}
}
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