Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS로 마우스를 가져갈 때 요소를 확대/축소/크기 조정하는 방법은 무엇입니까?


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>

출력

위의 코드는 다음과 같은 출력을 생성합니다 -

CSS로 마우스를 가져갈 때 요소를 확대/축소/크기 조정하는 방법은 무엇입니까?

노란색 원 위로 마우스를 가져가면 -

CSS로 마우스를 가져갈 때 요소를 확대/축소/크기 조정하는 방법은 무엇입니까?