-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsta1.html
More file actions
41 lines (37 loc) · 843 Bytes
/
insta1.html
File metadata and controls
41 lines (37 loc) · 843 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
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hover Me </title>
<style>
h1{
position: relative;
font-size: 5rem;
}
h1::before{
content: '';
display: block;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
background: hsl(200, 100%, 80%);
transform: scaleX(0);
transition: transform 0.3s ease;
z-index: -1;
transform-origin: left;
}
h1:hover::before{
transform: scaleX(1);
transform-origin: right;
}
</style>
</head>
<body>
<h1>
Makarand Hinge
</h1>
</body>
</html>