我今天一直在玩一些CSS3 + JavaScript。
下面你有我的代码,(试图制作世界上最小的图像淡入画廊,不知道我是否成功了。)
我不太确定如何设置CSS。请参阅以下评论问题:
-ms-transition:opacity 1s ease-in-out; // Will this allone work in IE 10?
transition:opacity 1s ease-in-out; // Why do we set this?
也许是世界上最小的JS-Gallery:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>HB - CSS3 + JS Gallery</title>
<meta charset="utf-8">
<style type="text/css">
body{margin:0;text-align:center;font:200px/500px georgia}
#g{background:#000;margin:0 auto;width:960px;height:500px;overflow:hidden}
#g div{
-webkit-transition:opacity 1s ease-in-out;
-moz-transition:opacity 1s ease-in-out;
-o-transition:opacity 1s ease-in-out;
-ms-transition:opacity 1s ease-in-out;
transition:opacity 1s ease-in-out;
opacity:0;position:absolute;height:500px;width:960px;}
</style>
</head>
<body>
<div id="g">
<div style="background:#090">1</div>
<div style="background:#096">2</div>
<div style="background:#963">3</div>
<div style="background:#CC0">4</div>
</div>
<script>
function i(){c[a].style.opacity='1'}function o(){c[a].style.opacity='0'}var g=document.getElementById('g'),c=g.children,l=c.length-1,f=function(){if(a==l){o();a=0;i()}else{o();a++;i()}};a=0;i();setInterval(f,4000);
</script>
</body>
</html>
答案 0 :(得分:9)
-ms-transition:opacity 1s ease-in-out; // Will this allone work in IE 10?
如果Microsoft在Internet Explorer中实现了transition
的特定于供应商的实现,那么这将由-ms-transition
属性声明触发,假设参数符合他们已实现的规范。
Can I Use表明IE 10确实实现了-ms-transition
属性,MSDN entry也是如此,尽管它实现的IE版本并不具体。 ..
transition:opacity 1s ease-in-out; // Why do we set this?
我们设置此项以便一旦最终确定并实施transition
的标准实现,这将覆盖任何临时特定于供应商的实现
答案 1 :(得分:7)
Microsoft同时实现了前缀和无前缀的版本。
所以对你的例子
-ms-transition:opacity 1s ease-in-out; // This will never be used because,
transition:opacity 1s ease-in-out; // This line will always overwrite it
在IE10中查看this jsfiddle,您会发现两者都运行正常。如果同时声明前缀和无前缀版本,则第二个声明将优先。