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

CSS로 호버에 전환을 추가하는 방법은 무엇입니까?


CSS에 마우스 오버로 전환을 추가하려면 코드는 다음과 같습니다. −

예시

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      padding: 20px;
   }
   .scaleBtn {
      display: inline-block;
      background-color: #0c1377;
      border: none;
      color: white;
      padding: 16px 32px;
      text-align: center;
      font-size: 16px;
      transition: 0.3s;
      margin: 20px;
   }
   .scaleBtn:hover {
      transform: scale(1.5);
   }
</style>
</head>
<body>
<h1>Transition on hover example</h1>
<button class="scaleBtn">Hover Here</button>
</body>
</html>

출력

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

CSS로 호버에 전환을 추가하는 방법은 무엇입니까?

'여기에 마우스를 올리면 위로 마우스를 가져갈 때 " 버튼 -

CSS로 호버에 전환을 추가하는 방법은 무엇입니까?