-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransform.html
More file actions
35 lines (34 loc) · 886 Bytes
/
transform.html
File metadata and controls
35 lines (34 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transform</title>
<style>
body {
background:#333;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.box {
background: white;
width: 300px;
height:300px;
transition:all 1s ease-in-out;
}
.box:hover {
/* transform: scale(-2); */
/* transform: rotate(180deg); */
/* transform: skew(23deg); */
/* transform: translateX(100px); */
/* transform: translateY(300px); */
transform: translate(100px, 100px);
}
</style>
</head>
<body>
<div class="box"></div>
</body>
</html>