Other User Diary
@-webkit-keyframes spin {  
from {  
   
-webkit-transform: rotate(0deg);  
}  
to
{  
   
-webkit-transform: rotate(360deg);  
   
}
}

.wheel {
    width
:40px;
    height
:40px;
    background
:url(wheel.png);
   
-webkit-animation-name: spin;
   
-webkit-animation-iteration-count: infinite;
   
-webkit-animation-timing-function: linear;
   
-webkit-animation-duration: 3s;
}



note: for firefox use moz instead of webkit

Harwinderpal singh
Country       INDIA
City               Chandigarh
Posted On   12/07/2012

4



Other Pages