I have a css3 animation with the following:
@-webkit-keyframes rotate { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } .animated { -webkit-animation-name: rotate; -webkit-animation-duration: 2.4s; -webkit-animation-iteration-count: infinite; -webkit-transition-timing-function: ease-in-out; }
This works flawlessly, well ... I want to make it wait between loops:
start animation, finish animation, wait (about 0.5 s) , start animation, end of animation, wait (about 0.5 s) ...
PS: I tried -webkit-animation-delay , it does not work.
Any help?
css css3 css-animations
Cihad turhan
source share