tr2

by rootjang

HTML

<!DOCTYPE html>
<html lang="ko-KR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
  <style>
    .tr2 {
      width: 100px;
      height: 100px;
      background-color: red;
      border: 1px solid black;
      transition-property: background-color, transform, width, height;
      transition-duration: 2s, 3s;
    }
    .tr2:hover {
      width: 200px;
      height: 200px;
      background: #ff6e5f;
      transform:rotate(180deg);
    }
  </style>
</head>
<body>
  <div class="tr2">!</div>
</body>
</html>