-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjustinaweb.html
89 lines (87 loc) · 4.61 KB
/
justinaweb.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Justina Colour Changer</title>
<link rel="stylesheet" href="css/styles.css?v=1.0">
<link rel="fluid-icon" href="https://fuzz.net.au/justinacc/icon.png" title="Justina">
<meta name="description" content="A simple page used for teaching kids (mostly my daughter) letters and words">
<meta name="author" content="Justin Condello">
<meta property="og:title" content="Justina Colour Changer">
<meta property="og:type" content="website">
<meta property="og:url" content="https://fuzz.net.au/justinacc/justinaweb.html">
<meta property="og:site_name" content="Justina Colour Changer">
<meta property="og:description"
content="A simple WebApp used for teaching kids (mostly my daughter) letters and words">
<meta property="og:image" content="https://fuzz.net.au/justinacc/icon.png">
<meta property="og:image:width" content="600">
<meta property="og:image:height" content="600">
<meta property="og:image:type" content="image/png">
<meta property="og:image:alt" content="Picture of Justina">
<link rel="icon" href="favicon.ico">
<link rel="icon" href="icon.png" type="image/png">
<link rel="icon" type="image/svg+xml" href="https://fuzz.net.au/justinacc/justina_inked.svg">
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://fuzz.net.au/justinacc/justina_inked.svg">
<link rel="apple-touch-icon" href="https://fuzz.net.au/justinacc/apple-touch-icon.png">
</head>
<body>
<div class="topright"><span style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span></div>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="#" onclick="showDialog('About', 'A simple WebApp used for teaching kids (mostly my daughter) letters and words. Created by Justin Condello © 2022')">About</a>
<a href="#" onclick="showDialog('Update Notes','json:jsondata/updates.json')">Update Notes</a>
<a href="#" onclick="showDialog('How to Play','Press keys on the keyboard and try to type out words to find them')">How to Play</a>
<hr />
<a name="mode_swap" id="mode_swap" onclick="changeMode()">Find All Words</a>
<a name="foundWords" id="foundWords" onclick="showDialog('Discovered Words','words')">Discovered Words</a>
</div>
<input name="fake" id="fake" style="height:50px;width:50px;position:absolute;z-index:101;top:50px;border:0 transparent;border-bottom: black 6px solid;font-size:2em"
type="text" autocomplete="off" autocapitalize="off" spellcheck="false" maxlength="1" />
<div id="debugtext">1234567</div>
<div id="disclaimer" class="centerPage disclaimer">
<table style="width:inherit;height:inherit">
<tr>
<td>
<div id="dTitle" class="dTitle">Disclamer</div>
</td>
</tr>
<tr style="height:100%">
<td>
<div id="disclaimertext" class="disclaimertext">
No warranty implied, use at own risk. No data is stored on the server and no cookies are generated or stored
in anyway by this web application.
<a href="http://fuzz.net.au/web/disclaimer.html">Refer here</a> for information on our use of Google Analytics tracking
</div>
<iframe title="dtframe" name="dtframe" id="dtframe" class="dtf" hidden>
</iframe>
</td>
</tr>
<tr>
<td>
<input name="accept" id="accept" type="button" value="Accept" onclick="hideDisclaimer()"
class="acceptButton" />
</td>
</tr>
</table>
</div>
<div id="explosionContainer"></div>
<div id="middletext" class="centerPage">Get Ready</div>
<div id="mode_2" hidden class="centerPage">
<div id="testWord" style="z-index:91"></div>
<div id="verified" style="z-index:92" hidden></div>
<div id="testLetters" style="z-index:92"></div>
</div>
<div id="gradient" class="gradient"></div>
<canvas id="page">Your Browser does not support canvas!</canvas>
<script src="js/worddictionary.js"></script>
<script src="js/exploding.js"></script>
<script src="js/main.js"></script>
<script src="js/tests-min.js"></script>
<script>
changeMode();
debugModeShow(false);
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
</body>
</html>