-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSS_Transform.html
More file actions
105 lines (89 loc) · 2.31 KB
/
CSS_Transform.html
File metadata and controls
105 lines (89 loc) · 2.31 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<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>CSS Transform</title>
<!--Style Tag-->
<style>
body{
margin: 0%;
padding:0%;
}
section{
width: 100%;
height: 100%;
}
section div{
width:200px;
height: 50px;
display: grid;
align-items: center;
justify-content: center;
border: 3px solid;
color: black;
margin: 20px auto;
transition: all 2s ease;
}
div:nth-of-type(1){
background-color: yellow;
}
div:nth-of-type(1):hover{
transform: translatex(200px) scale(1.2);
cursor: pointer;
color:white;
}
div:nth-of-type(2){
background-color:red
}
div:nth-of-type(2):hover{
transform: translatex(-200px) scale(1.2);
cursor: pointer;
color:white;
}
div:nth-of-type(3){
background-color:green;
}
div:nth-of-type(3):hover{
transform: translatex(200px) scale(1.2);
cursor: pointer;
color:white;
}
div:nth-of-type(4){
background-color:purple;
}
div:nth-of-type(4):hover{
transform: translatex(-200px) scale(1.2);
cursor: pointer;
color:white;
}
div:nth-of-type(5){
background-color:orange;
}
div:nth-of-type(5):hover{
transform: translatex(200px) scale(1.2);
cursor: pointer;
color:white;
}
div:nth-of-type(6){
background-color:blue;
}
div:nth-of-type(6):hover{
transform: translatex(-200px) scale(1.2);
cursor: pointer;
color:white;
}
</style>
</head>
<body>
<section>
<div>Transfrom</div>
<div>Trnasfrom</div>
<div>Trnasfrom</div>
<div>Trnasfrom</div>
<div>Trnasfrom</div>
<div>Trnasfrom</div>
</section>
</body>
</html>