-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (61 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
color: white;
user-select: none;
background: url(/assets/bg.svg) no-repeat center center fixed #1c1c1c;
}
#buttons {
display: flex;
gap: 15px;
width: 100%;
flex-wrap: wrap;
margin: 20px;
justify-content: center;
}
.button {
background-color: rgba(128 128 128 / .3);
backdrop-filter: blur(10px);
padding: 10px 25px;
border: 1px solid rgba(255, 255, 255, .1);
border-radius: 5px;
}
</style>
</head>
<body>
<script src="dist/memz.umd.js"></script>
<script>
const mmz = new Memz("/src/assets")
</script>
<div id="buttons">
<div class="button" onclick="mmz.all()">
Memz.all()
</div>
<div class="button" onclick="mmz.changeCursor()">
Memz.changeCursor()
</div>
<div class="button" onclick="mmz.computerSounds()">
Memz.computerSounds()
</div>
<div class="button" onclick="mmz.floatingIcons()">
Memz.floatingIcons()
</div>
<div class="button" onclick="mmz.messageBoxes()">
Memz.messageBoxes()
</div>
<div class="button" onclick="mmz.invertColors()">
Memz.invertColors()
</div>
<div class="button" onclick="mmz.rotateScreen()">
Memz.rotateScreen()
</div>
</div>
</body>
</html>