欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

解析CSS3 transition浏览器兼容性

程序员文章站 2022-04-23 10:53:36
...
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浏览器兼容性的详细内容,更多请关注其它相关文章!

相关标签: CSS 浏览器兼容