-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (59 loc) · 3.35 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
65
66
67
68
<!DOCTYPE html>
<html>
<head>
<title>Mantis Customizer</title>
<link rel="icon" type="image/png" href="misc_assets/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="misc_assets/favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" href="layout.css" type="text/css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-L4X54LB1ZR"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-L4X54LB1ZR');
</script>
</head>
<body onload="loaded()">
<div id = "loading_container">
<div id="loader"></div>
</div>
<img class = "header" src = "misc_assets/title banner.gif" alt = "title"/>
<div class = "container">
<span class = "intro">
<p>Welcome to the Mantis Customizer! Mobile users may want to rotate their device.</p>
</span>
<button class="button home" onclick="location.href='https://ajc-pet-customizers.github.io';"> </button>
<div class="color_panel_div">
<div></div>
<div class="color_grid" id = "color_grid_1"></div>
<div class="color_grid" id = "color_grid_2"></div>
</div>
<div class="eye_panel_div">
<div> </div> <div></div>
</div>
<div class="other_panel_div" style = "grid-area:other_panels">
<div></div><div></div><div></div>
</div>
<div class = "mantis_container" id="mantis_container">
<img class="mantis antennae" id="antennae" src = "misc_assets/empty.png" alt = "antennae" style="position:relative"/>
<img class="mantis base" id="base" src = "misc_assets/empty.png" alt = "base" style="position:absolute"/>
<img class="mantis eye_base" id="eye_base" src = "misc_assets/empty.png" alt = "eye_base" style="position:absolute"/>
<img class="mantis eye" id="eye" src = "misc_assets/empty.png" alt = "eye" style="position:absolute"/>
<img class="mantis pattern" id="pattern" src = "misc_assets/empty.png" alt = "pattern" style="position:absolute"/>
<img class="mantis mouth" id="mouth" src = "misc_assets/empty.png" alt = "mouth" style="position:absolute"/>
<img class="mantis eye_base" id="eye_base" src = "misc_assets/empty.png" alt = "eye_base" style="position:absolute"/>
<img class="mantis watermark" id="watermark" src = "misc_assets/watermark.png" alt = "watermark" style="position:absolute"/>
<canvas class = "mantis_canvas" id="mantis_canvas" width="1000" height="1000"></canvas>
<div class="mantis" style="position:absolute; z-index: 200"> </div>
<button class="button save" id = "save"> </button>
<button class="button new_tab" id = "new_tab"> </button>
<button class="button randomize" id = "randomize"> </button>
<button class="button bg_contrast" id = "bg_contrast"> </button>
</div>
<div style = "grid-area:empty"></div>
</div>
<div class = "footer2"> Created by <a href="https://aj-item-worth.fandom.com/wiki/User:BrightSunshine" target="_blank">BrightSunshine</a> • Licensed under <a href = "https://creativecommons.org/licenses/by-nc/4.0/" target="_blank">CC-BY-NC 4.0</a> • Fonts and some assets adapted from the <a href="https://www.animaljamarchives.com/" target="_blank">Animal Jam Archives</a> • Fair-use of copyrighted material from <a href="https://www.wildworks.com/" target="_blank">WildWorks</a></div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>