2014-10-07 129 views
1

我想在IE9運行或轉換爲Java腳本在IE9 &運行不工作!沒有不同勢CSS3動畫(關鍵幀)在IE9

 #div1{ 
     width:100px; 
     height:150px; 
     float:left; 
     background-color:red; 
     animation: mymove 2s infinite; 
     -webkit-animation: mymove 2s infinite; 
     -webkit-animation-direction: alternate; 
     animation-direction: alternate; 
     transform-origin: 50% 0%;} 

    @keyframes mymove { 
     from {transform:rotate(10deg);}to {transform:rotate(-10deg);} 
    } 
    @-webkit-keyframes mymove { 
     from {transform:rotate(10deg);}to {transform:rotate(-10deg);} 
    } 

回答