14-5

TO AC·2022년 3월 15일
0

CCS

목록 보기
17/20

트랜지션


<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>트랜지션 변화의 시간</title>
  <style>
     body {
        background: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
      }

      .box {
        background: white;
        width: 100px;
        height: 100px;
        /* transition-property: background-color border-radius height width; */
        /* transition-property: all; */
        /* transition-duration: 3s; */
        /* transition-timing-function: ease-out; */
        /* transition-delay: 2s; */

        /* 단축키워드 - property/duration/timing-function/delay */
        transition: all 2s ease-in-out;
      }

      .box:hover {
        background: red;
        border-radius: 50%;
        height: 300px;
        width: 300px;
      }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>
profile
유망주

0개의 댓글