标签:
transition 属性是一个简写属性,用于设置四个过渡属性:
注释:请始终设置 transition-duration 属性,否则时长为 0,就不会产生过渡效果
<!DOCTYPE html>
<html>
<head>
<style>
div
{
width:100px;
height:100px;
background:blue;
transition:width 2s;
-moz-transition:width 2s; /* Firefox 4 */
-webkit-transition:width 2s; /* Safari and Chrome */
-webkit-transition:height 10s;
-o-transition:width 2s; /* Opera */
}
div:active
{
width:300px;
height:200px;
}
</style>
</head>
<body>
<div></div>
<p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p>
<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/wulinwulin/p/5861464.html