2015-12-13 42 views

回答

0

使用CSS3 @keyframes規則

//html 
<div class="rotating"></div> 



//css 

div { 
width:100px; 
height:100px; 
border: 1px solid red; 
} 

@-webkit-keyframes rotating { 
    from{ 
    -webkit-transform: rotate(0deg); 
    } 
    to{ 
    -webkit-transform: rotate(360deg); 
    } 
} 

.rotating { 
    -webkit-animation: rotating 2s linear infinite; 
} 

這裏是例子 http://codepen.io/anon/pen/GopMeq