当前位置:Gxlcms > css > 解析CSS3transition浏览器兼容性

解析CSS3transition浏览器兼容性

时间:2021-07-01 10:21:17 帮助过:161人阅读

1、兼容性

根据canius,transition 兼容性如下图所示:

解析CSS3 transition浏览器兼容性

<!DOCTYPE html>
<html>
<head>
<style> 
p
{
width:100px;
height:100px;
background:blue;
transition:width 2s;
-moz-transition:width 2s; /* Firefox 4 */
-webkit-transition:width 2s; /* Safari and Chrome */
-o-transition:width 2s; /* Opera */
}

p:hover
{
width:300px;
}
</style>
</head>
<body>

<p></p>

<p>请把鼠标指针移动到蓝色的 p 元素上,就可以看到过渡效果。</p>

<p><b>注释:</b>本例在 Internet Explorer 中无效。</p>

</body>
</html>

在IE7-9进行测试时,transition的效果没有过渡效果(如线性过渡效果),但是还是有效果(立即执行transition-property,transition-duration,transition-timing-function,transition-delay都不起作用)

以上就是解析CSS3 transition浏览器兼容性的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行