Click here to Skip to main content
15,740,826 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i wanna rotate a div 360 deg and iterate it after a few second if i use code below the delay only accomplish in start action. i wanna iterate rotate and delay to infinity but this code only iterate rotate to infinity
CSS
 @-webkit-keyframes rotate {
   
    50% { 
    -webkit-transform: rotate(-360deg) ;
    }
   
    100% { 
    -webkit-transform: rotate(10deg) ;
    }
    }
#logo span.star
{
    -webkit-animation-name: rotate; 
    -webkit-animation-duration:1.5s; 
    -webkit-animation-iteration-count:  infinite;
    -webkit-animation-timing-function: step-start ;
    -webkit-animation-delay: 5s;
    
}
Posted
Comments
Sergey Alexandrovich Kryukov 29-Jun-12 16:06pm    
Are you really trying to implement something which would be available only for Webkit (with Chromium, Chrome, Safari, etc.)? Why?
--SA
aminkourosh 30-Jun-12 0:56am    
it implements for other browser.i test it .its enough that you change prefix.but the thing that i search is other.i want find the solution for iterate delay along iteration action

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900