I have a basic animation set up with keyframes.
@-webkit-keyframes rotation {
0% { -webkit-transform: rotate(10deg); }
25% { -webkit-transform: rotate(5deg); }
50% { -webkit-transform: rotate(10deg); }
75% { -webkit-transform: rotate(5deg); }
100% { -webkit-transform: rotate(10deg); }
}
and
.class { -webkit-animation: rotation 1s infinite; }
Can we insert a break between this keyframe animation? Say, for 5 seconds? I am aware of the -webkit-animation-delay, but that only delays the start of the animation.
P.S. I understand it's just the webkit prefix... eventually, I'll use prefixr to take care of that.