2014-10-07 111 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);} 
    } 

回答