css のトランジション遅延属性は、トランジション効果の開始時期を指定するために使用されます。トランジション遅延値は秒またはミリ秒単位です。その構文は、transition-delay: time です。
CSS トランジション遅延プロパティを使用するにはどうすればよいですか?
関数: トランジション遅延属性は、トランジション効果がいつ開始されるかを指定します。遷移遅延値は秒またはミリ秒単位です。
構文:
transition-delay: time
説明:
time トランジション効果が開始されるまでの待機時間を秒またはミリ秒で指定します。
注:
Internet Explorer 10、Firefox、Opera、および Chrome は、transition-delay 属性をサポートしています。
Safari は、代替の -webkit-transition-lay プロパティをサポートしています。
注:
Internet Explorer 9 以前のブラウザは、transition-delay 属性をサポートしていません。
CSS 遷移遅延プロパティの使用例
<!DOCTYPE html> <html> <head> <style> div { width:100px; height:100px; background:blue; transition-property:width; transition-duration:5s; transition-delay:2s; /* Firefox 4 */ -moz-transition-property:width; -moz-transition-duration:5s; -moz-transition-delay:2s; /* Safari and Chrome */ -webkit-transition-property:width; -webkit-transition-duration:5s; -webkit-transition-delay:2s; /* Opera */ -o-transition-property:width; -o-transition-duration:5s; -o-transition-delay:2s; } div:hover { width:300px; } </style> </head> <body> <div></div> <p>请把鼠标指针移动到蓝色的 div 元素上,就可以看到过渡效果。</p> <p><b>注释:</b>过渡效果会在开始前等待两秒钟。</p> <p><b>注释:</b>本例在 Internet Explorer 中无效。</p> </body> </html>
効果の出力:
以上がCSS トランジション遅延プロパティの使用方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。