我正在使用此代码在页面加载时淡入图像。在我测试的所有浏览器中工作正常,但Windows上的IE除外。
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
.fade-in {opacity:0;-webkit-animation:fadeIn ease-in 1;-moz-animation:fadeIn ease-in 1;animation:fadeIn ease-in 1;-webkit-animation-fill-mode:forwards;-moz-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:1.5s;-moz-animation-duration:1.5s;animation-duration:1.5s;}
.fade-in.one {-webkit-animation-delay: 0.3s;-moz-animation-delay: 0.3s;animation-delay: 0.3s;}
.fade-in.two {-webkit-animation-delay: 0.6s;-moz-animation-delay:0.6s;animation-delay: 0.6s;}
.fade-in.three {-webkit-animation-delay: 0.9s;-moz-animation-delay: 0.9s;animation-delay: 0.9s;}
任何想法?
答案 0 :(得分:1)
您使用的是this方法,它有一个IE警告:
警告!此CSS3代码仅适用于Firefox,Chrome,Safari和 也许更新版本的IE(9版之后)
由于IE9不支持css3动画但支持不透明度:0; 属性你必须有ie9加载一个单独的ie9 css你 将所有淡入淡出类设置为不透明度:1
如果您正在寻找替代方案:
如果您正在寻找一个自我调用过渡,那么您应该使用CSS3 Animations,它们也不受支持,但这正是它们的目的。
#test p {
margin-top: 25px;
font-size: 21px;
text-align: center;
-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
-moz-animation: fadein 2s; /* Firefox < 16 */
-ms-animation: fadein 2s; /* Internet Explorer */
-o-animation: fadein 2s; /* Opera < 12.1 */
animation: fadein 2s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
所有现代浏览器,IE 10 +:http://caniuse.com/#feat=css-animation
或者,您可以使用jQuery(或普通JS,请参阅第三个代码块)来更改加载类:
$("#test p").addClass("load");
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
-webkit-transition: opacity 2s ease-in;
-moz-transition: opacity 2s ease-in;
-ms-transition: opacity 2s ease-in;
-o-transition: opacity 2s ease-in;
transition: opacity 2s ease-in;
}
#test p.load {
opacity: 1;
}
document.getElementById("test").children[0].className += " load";
所有现代浏览器,IE 10 +:http://caniuse.com/#feat=css-transitions
或者,您可以使用 .Mail 使用的方法:
$("#test p").delay(1000).animate({ opacity: 1 }, 700);
#test p {
opacity: 0;
font-size: 21px;
margin-top: 25px;
text-align: center;
}
jQuery 1.x :所有现代浏览器,IE 6 +:http://jquery.com/browser-support/
jQuery 2.x :所有现代浏览器,IE 9 +:http://jquery.com/browser-support/
此方法是最交叉兼容的,因为目标浏览器不需要支持CSS3过渡或动画。
<强> Source 强>
答案 1 :(得分:-1)
尝试添加前缀-ms-
,例如-ms-animation-delay
因为您只为-moz-
指定了mozilla
前缀,为-webkit-
指定了chrome
。