본문 바로가기

css

11장 예제 scale()함수를 사용해 확대.축소하기

<!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>scale()함수를 사용해 확대.축소하기 </title>
  <style>
    #container {
      width:800px;
      margin:20px auto;
    }

    .origin {
      width:100px;
      height:100px;
      border:1px solid black;
      float:left;
      margin:40px;
    }

    .origin > div {      
        width:100px;
        height:100px;
        background-color:orange;
      }

    #scalex:hover{
      /*x축으로 2배 확대 */
      transform:scaleX(2);
    }

    #scaley:hover{
      /*y축으로 1.5배 확대 */
      transform:scaleY(1.5);
    }

    #scale:hover{
      /*x,y축으로 0.7배 확대 */
      transform:scale(0.7);
    }
  </style>
</head>
<div id="container">
  <div class="origin">
    <div id="scalex"></div>
  </div>
  <div class="origin">
    <div id="scaley"></div>
  </div>
  <div class="origin">
    <div id="scale"></div>
  </div>
  </div>
</div>
</body>
</html>