본문 바로가기

css

11장 예제 - 트랜지션 속성 한꺼번에 지정하기

<!DOCTYPE html>
<html lang="ko">
<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>
    .box {
      margin:50px auto;
      width:100px;
      height:100px;
      background-color:#fb5;
      border:1px solid #222;
      transition:2s ease-in;/* 대상: all, 시간:2초, 함수:ease-in */
    }

    .box:hover {
      /*여기에 있는 속성이 모두 트랜지션 대상*/
      width:200px;
      height:200px;
      background-color:#f50;
      transform:rotate(270deg);
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>