CSS의 전환 기간 속성을 사용하여 CSS 전환 효과가 완료되는 데 걸리는 시간(초 또는 밀리초)을 설정하세요. −
실시간 데모
<!DOCTYPE html> <html> <head> <style> div { width: 150px; height: 150px; background: blue; transition-property: height; transition-duration: 2s; } div:hover { height: 200px; } </style> </head> <body> <h1>Heading One</h1> <p>Hover over the below box to change its height.</p> <div></div> </body> </html>
위 내용은 CSS 전환 효과가 완료되는 데 걸리는 시간(초 또는 밀리초)을 설정합니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!