My CSS @Keyframe animations are working in FireFox, however, even with
-webkit-animations and -webkit-keyframes they are not working in Chrome, what am I doing wrong?
Here is a codepen for easy viewing of the code: https://codepen.io/jmitchelreed/pen/vYXzMgv
@keyframes yinLoop {
from {
rotate: 0deg;
}
to {
rotate: 360deg;
}
};
@-webkit-keyframes yinLoop {
from {
rotate: 0deg;
}
to {
rotate: 360deg;
}
};
img {
width: 20%;
animation: yinLoop 7s infinite linear;
-webkit-animation: yinLoop 7s infinite linear;
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…