-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathanuj-My.html
105 lines (90 loc) · 2.25 KB
/
anuj-My.html
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>Background Reveal Animation</title>
<style>
*,
*::after,
*::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
main {
position: relative;
height: 100vh;
}
.side .fancy {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
font-size: 1.3em;
line-height: 0.8em;
}
.side {
background-color: black;
width: 100%;
height: 100vh;
display: grid;
place-items: center;
overflow: hidden;
position: absolute;
}
.side .title {
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
sans-serif;
font-size: 8vw;
margin: 0 15vw;
width: 70vw;
}
#left-side .title {
color: white;
}
#left-side .fancy {
color: yellow;
}
#right-side .title {
color: rgb(39, 39, 39);
}
#right-side .fancy {
color: white;
}
#right-side {
background-color: #992bff;
}
#left-side {
z-index: 2;
background-color: rgb(32, 255, 181);
}
</style>
</head>
<body>
<main>
<div id="right-side" class="side">
<h2 class="title">
Today is going to
<span class="fancy"> awesome </span>
</h2>
</div>
<div id="left-side" class="side">
<h2 class="title">
Today is going to
<span class="fancy"> wonderful </span>
</h2>
</div>
</main>
<script>
const left = document.getElementById("left-side");
const handleOnMove = (e) => {
const p = (e.clientX / window.innerWidth) * 100;
left.style.width = `${p}%`;
};
document.onmousemove = (e) => handleOnMove(e);
document.ontouchmove = (e) => handleOnMove(e.touches[0]);
</script>
</body>
</html>