CSS로 마우스를 가져갈 때 요소를 확대/축소/확대하려면 코드는 다음과 같습니다. -
예
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> * { box-sizing: border-box; } .zoomDiv { padding: 50px; background-color: yellow; transition: transform 0.2s; width: 200px; height: 200px; margin: 70px; border-radius: 50%; border: 4px solid rgb(78, 37, 155); } .zoomDiv:hover { transform: scale(1.5); } </style> </head> <body> <h1>Zoom on Hover Example</h1> <h2>Hover over the below element to see it zoom.</h2> <div class="zoomDiv"></div> </body> </html>
출력
위의 코드는 다음과 같은 출력을 생성합니다 -
노란색 원 위로 마우스를 가져가면 -