다중 전환의 경우 약식 속성인 CSS3 전환 속성을 사용합니다. 전환의 속성, 지속 시간, 타이밍 및 지연을 한 줄로 설정합니다.
다음은 CSS3를 사용하여 다중 전환을 수행하는 코드입니다 -
예시
<!DOCTYPE html> <html> <head> <style> .container div { width: 300px; height: 100px; border-radius: 1px; background: rgb(25, 0, 255); border: 2px solid red; transition: width 2s, border-radius 2s; } .container:hover div { width: 100px; border-radius: 50%; } </style> </head> <body> <h1>Multiple transitions example</h1> <div class="container"> <div></div> </div> <h2> Hover over the above div to reduce its width and to change it into circle </h2> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -