1、相容性
根據canius,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瀏覽器相容性的詳細內容。更多資訊請關注PHP中文網其他相關文章!