【发布时间】:2014-10-12 17:33:46
【问题描述】:
以下 css 动画在 Chrome、Mozilla、Opera 浏览器中完美运行,但在 Internet Explorer 10 和 11 中无法运行。出了什么问题?
请看http://jsfiddle.net/bm72w3n3/
.changed {
-webkit-animation:target-fade 5s 1;
-moz-animation:target-fade 5s 1;
animation:target-fade 5s 1;
}
@-webkit-keyframes target-fade {
0% { text-shadow: 0 0 10px yellow; }
100% { -webkit-transition: text-shadow 0.2s linear; }
}
@-moz-keyframes target-fade {
0% { text-shadow: 0 0 10px yellow; }
100% { -moz-transition: text-shadow 0.2s linear; }
}
@keyframes target-fade {
0% { text-shadow: 0 0 10px yellow; }
100% { transition: text-shadow 0.2s linear; }
}
【问题讨论】:
标签: css internet-explorer internet-explorer-10 css-animations internet-explorer-11