-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrave.html
More file actions
77 lines (71 loc) · 3 KB
/
Copy pathrave.html
File metadata and controls
77 lines (71 loc) · 3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Rave Light | Tools and Utilities from REFLEX.TOOLS">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<meta name="author" content="qwk">
<meta property="og:title" content="reflex.tools">
<meta property="og:description" content="Rave Light | Tools and Utilities from REFLEX.TOOLS">
<meta property="og:type" content="website">
<meta property="og:site_name" content="reflex.tools">
<meta property="og:locale" content="en_GB">
<meta property="og:image" content="https://og.tailgraph.com/og?fontFamily=Montserrat&title=Rave Light&titleTailwind=font-bold%20text-6xl%20text-white&text=Tools and Utilities from REFLEX.TOOLS&textTailwind=text-2xl%20mt-4%20bg-blueGray-300%20text-gray-300&logoUrl=&logoTailwind=h-8&bgTailwind=bg-black&footer=reflex.tools&footerTailwind=text-blue-400%20text-3xl&t=1744575448853&refresh=1">
<meta property="og:image:alt" content="reflex.tools">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="reflex.tools">
<meta name="twitter:site" content="@qwkdev">
<meta name="twitter:description" content="Rave Light | Tools and Utilities from REFLEX.TOOLS">
<meta name="twitter:image" content="https://og.tailgraph.com/og?fontFamily=Montserrat&title=Rave Light&titleTailwind=font-bold%20text-6xl%20text-white&text=Tools and Utilities from REFLEX.TOOLS&textTailwind=text-2xl%20mt-4%20bg-blueGray-300%20text-gray-300&logoUrl=&logoTailwind=h-8&bgTailwind=bg-black&footer=reflex.tools&footerTailwind=text-blue-400%20text-3xl&t=1744575448853&refresh=1">
<meta name="twitter:image:alt" content="reflex.tools">
<title>Rave Light | reflex.tools</title>
<style>
body {
margin: 0;
background: #fff;
}
@keyframes rave1 {
0% { background: #f00; }
14.28% { background: #60f; }
28.56% { background: #ff0; }
42.84% { background: #00f; }
57.12% { background: #0ff; }
71.4% { background: #0f0; }
85.68% { background: #fa0; }
100% { background: #f0f; }
}
.anim1 { animation: rave1 .5s infinite alternate linear; }
@keyframes rave2 {
0% { background: #f00; }
14.28% { background: #0ff; }
28.56% { background: #fa0; }
42.84% { background: #00f; }
57.12% { background: #ff0; }
71.4% { background: #60f; }
85.68% { background: #0f0; }
100% { background: #f0f; }
}
.anim2 { animation: rave2 .5s infinite alternate linear; }
</style>
</head>
<body class="anim1">
<script>
let toggle = true;
setInterval(() => {
document.body.classList.toggle('anim1', toggle);
document.body.classList.toggle('anim2', !toggle);
toggle = !toggle;
}, 2000);
document.addEventListener('dblclick', () => {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
document.exitFullscreen();
}
});
</script>
</body>
</html>