-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
27 lines (26 loc) · 1.19 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
<!DOCTYPE html>
<html>
<head>
<title>Foggy Window</title>
<link href="style.css" type="text/css" rel="stylesheet">
</head>
<body onload="quickTint()">
<script type="text/javascript">
//window.alert("Welcome👏to👏my👏foggy👏window👏simulation👏❗️\n\nDrag 💁💅with the mouse 🐹to draw 🖍on the window pane ⬜️. Resizing ↔️the window 🔳isn't encouraged at this time 💩🚫☠️, but 🍑if you must 😩, refresh 💦the page afterwards 👌🕶💯\n");
</script>
<div id="daddy">
<div class="windowframe top"></div>
<div class="windowframe bottom"></div>
<div class="windowframe side left"></div>
<div class="windowframe side right"></div>
<canvas id="draw">
<img>
</canvas>
<script type="text/javascript" src="Draw.js"></script>
<script type="text/javascript" src="Tint.js"></script>
</div>
<script type="text/javascript">
window.alert("Welcome👏to👏my👏foggy👏window👏simulation👏❗️\n\nDrag 💁💅with the mouse 🐹to draw 🖍on the window pane ⬜️. Resizing ↔️the window 🔳isn't encouraged at this time 💩🚫☠️, but 🍑if you must 😩, refresh 💦the page afterwards 👌🕶💯\n");
</script>
</body>
</html>