IE上的webkit动画



我已经为我的图像控件创建了以下辉光效果,但它在IE上不起作用。我如何使它在IE9上运行?或者其他选择?

@-webkit-keyframes redPulse {
from { background-color: #FF5959; -webkit-box-shadow: 0 0 40px #FF5959; }
50% { background-color: #FD9FA2; -webkit-box-shadow: 0 0 40px #FD9FA2; }
to { background-color: #FF5959; -webkit-box-shadow: 0 0 40px #FF5959; }
}
.red{
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
width:200px;
padding-top:0px;
margin-top:0px;
}

它仍然没有支持

Internet Explorer还不支持@keyframes规则或animation属性。

Firefox需要前缀-moz-,Chrome和Safari需要前缀-webkit-和Opera需要前缀-o。

发件人:http://www.w3schools.com/css3/css3_animations.asp

更新也许它可以帮助您处理一些jqueryhttp://placenamehere.com/article/384/css3boxshadowininternetexplorerblurshadow/

最新更新