【发布时间】:2015-01-11 04:19:16
【问题描述】:
我真的需要一些帮助。在这个网站上http://medicalaid.org 在另一位开发人员离开后,我一直在尝试修复它。我遇到的最后一个问题是我无法在 IE10 中加载一半的 webkit 动画,所有其他浏览器都可以正常工作,并且几乎所有内容 div 都有它们。例如,我尝试过重写 css:
@-webkit-keyframes bounceIn {
0% {
opacity: 0;
-webkit-transform: scale(.3);
-moz-transform: scale(.3);
-o-transform: scale(.3);
-ms-transform: scale(.3);
}
50% {
opacity: 1;
-webkit-transform: scale(1.05);
-moz-transform: scale(1.05);
-o-transform: scale(1.05);
-ms-transform: scale(1.05);
}
70% {
-webkit-transform: scale(.9);
-moz-transform: scale(.9);
-o-transform: scale(.9);
-ms-transform: scale(.9);
}
100% {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-o-transform: scale(1);
-ms-transform: scale(1);
}
}
@keyframes bounceIn {
0% {
opacity: 0;
transform: scale(.3);
}
50% {
opacity: 1;
transform: scale(1.05);
}
70% {
transform: scale(.9);
}
100% {
transform: scale(1);
}
}
.bounceIn.go {
-webkit-animation-name: bounceIn;
-moz-animation-name: bounceIn;
-o-animation-name: bounceIn;
-ms-animation-name: bounceIn;
animation-name: bounceIn;
}
而且我什么也做不了,如果有人可以看看并帮助我,那就太好了
【问题讨论】:
-
(没有反对意见兄弟)代码 sn-p 不在 Chrome 中运行。 (编辑)哦,这不是代码 sn-p。如果您想添加一个您正在尝试做的示例,请使用代码 sn-p。否则,只需将其标记为代码。
-
是我的错谢谢
标签: css html internet-explorer internet-explorer-10 webkit-transform