-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (106 loc) · 2.96 KB
/
index.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
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Buttons of Life</title>
<style>
body {
font-family: "Arial", sans-serif;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
overflow: hidden; /* Ensure the video covers the entire viewport */
}
#video-background {
position: fixed;
top: 0;
left: 0;
min-width: 100%;
min-height: 100%;
z-index: -1; /* Place the video behind other elements */
}
.button-container {
display: flex;
gap: 20px;
flex-direction: column;
align-items: center;
}
.button {
position: relative;
width: 80px; /* Increase width */
height: 40px; /* Increase height */
border-radius: 20px;
background-color: #726e6e;
cursor: pointer;
overflow: hidden;
margin-bottom: 10px;
display: flex;
align-items: center;
justify-content: center;
user-select: none;
}
.slider {
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
border-radius: 20px;
background-color: #ffd000;
transition: width 0.3s ease;
}
.button.on .slider {
width: 100%;
}
.text {
color: #fff;
font-size: 14px;
z-index: 1;
}
</style>
</head>
<body>
<video id="video-background" autoplay muted loop>
<source src="lighting.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<div class="button-container">
<div class="button off" id="button1">
<div class="slider"></div>
<div class="text">Love</div>
</div>
<div class="button off" id="button2">
<div class="slider"></div>
<div class="text">Money</div>
</div>
<div class="button off" id="button3">
<div class="slider"></div>
<div class="text">Happiness</div>
</div>
</div>
<script>
const buttons = document.querySelectorAll(".button");
buttons.forEach((button) => {
button.addEventListener("click", () => {
if (button.classList.contains("on")) {
button.classList.remove("on");
button.classList.add("off");
} else {
const activeButtons = document.querySelectorAll(".button.on");
if (activeButtons.length >= 2) {
const randomButton =
activeButtons[Math.floor(Math.random() * activeButtons.length)];
randomButton.classList.remove("on");
randomButton.classList.add("off");
}
button.classList.remove("off");
button.classList.add("on");
}
});
});
</script>
</body>
</html>