1. 互換性
canius によると、トランジションの互換性は次の図に示すとおりです。
<!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-property、transition-duration、transition-timing-function、transition-delay の即時実行は機能しません)
以上がCSS3 トランジションの解析ブラウザ互換性の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。