-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMagicPuddle.html
60 lines (60 loc) · 2.31 KB
/
MagicPuddle.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
<!doctype html>
<html>
<head>
<title>Magic Puddle by Pixievolt No. 1</title>
<meta charset="UTF-8">
<meta name="description" property="og:description" content="Relax with a procedurally-generated animation of colorful ripples.">
<meta name="viewport" content="width=device-width">
<script type="module" src="magicPuddle.js"></script>
<link rel="stylesheet" href="stylesheet.css">
<link rel="icon" href="appIcon.v1.svg">
<link rel="manifest" href="app.webmanifest">
<meta name="theme-color" content="#000055">
<meta property="og:image" content="screenshot.png">
</head>
<body>
<div id="container">
<svg id="puddle" version="1.1"></svg>
</div>
<div id="meta">
<div id="titleCard" style="visibility: hidden;">
<div id="titleCardText">
<span id="title">Magic Puddle</span> by <span id="author">Pixievolt No. 1</span>
</div>
<button id="optionsButton" aria-label="Options" aria-pressed="false">
<img src="titleCardButtons.v1.svg#menu" aria-hidden="true">
</button>
<button id="fullscreen" aria-label="Fullscreen" aria-pressed="false">
<img src="titleCardButtons.v1.svg#fullscreen" aria-hidden="true">
</button>
</div>
<svg id="titleCardHolder" preserveAspectRatio="xMinYMax meet">
<foreignObject width="100%" height="100%"></foreignObject>
</svg>
<div id="messageBox" role="alertdialog" aria-describedby="message" hidden>
<div id="message"></div>
<button id="dismissMessage">OK</button>
</div>
<div id="updating" hidden>Updating...</div>
<div id="optionsLayer" hidden inert>
<div id="optionsPanel">
<div id="menu">
<label><input type="checkbox" id="blackBg" autocomplete="off"> Black Background</label>
<label><input type="checkbox" id="offline" autocomplete="off"> Make Available Offline</label>
<a href="https://glitch.com/edit/#!/remix/magic-puddle">Remix on Glitch</a>
<a href="https://pixievoltno1.itch.io/magic-puddle/donate">Donate</a>
<a href="https://pixievoltno1.com/web/">More Web Wonders</a>
<div id="info">
<p>Magic Puddle v4.0</p>
<p>Made by <a href="https://pixievoltno1.com">Pixievolt No. 1</a></p>
<p>Font: <a href="https://www.fontsquirrel.com/fonts/Folks-Light">Folks by Manfred Klein</a></p>
</div>
</div>
<button id="closeOptions" aria-label="Close">
<img src="closeButton.v1.svg" aria-hidden="true">
</button>
</div>
</div>
</div>
</body>
</html>