tr3
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>
.tr1 {
width: 200px;
height: 200px;
background-color: red;
border: 1px solid black;
transition: 2s ease-in;
}
.tr1:hover {
width: 100px;
height: 100px;
background: #ff6e5f;
transform: rotate(720deg);
margin-left: 400px;
}
</style>
</head>
<body>
<div class="tr1"></div>
</body>
</html>