-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtile-manager.html
123 lines (119 loc) · 4.2 KB
/
tile-manager.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tile Management</title>
<link rel="stylesheet" href="css/tile.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YSHQCXP78J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-YSHQCXP78J');
</script>
</head>
<body>
<div class="container wrapper">
<div class="drop-targets">
<h1>Tile Editor</h1>
<p>Please Select the tile you'd like to manage</p>
<a class="goHome" href="help.html">How does this work?</a>
<br>
<a class="goHome" href="index.html">Go Back Home</a>
<div class="slide one">
<div class="box" id="box5">
<div class="item" id="item">
</div>
</div>
<div class="box" id="box6"></div>
<div class="box" id="box7"></div>
<div class="box" id="box8"></div>
<br><br>
<div class="box" id="box9"></div>
<div class="box" id="box10"></div>
<div class="box" id="box11"></div>
<div class="box" id="box12"></div>
<br><br>
<div class="box" id="box13"></div>
<div class="box" id="box14"></div>
<div class="box" id="box15"></div>
<div class="box" id="box16"></div>
</div>
<div class="slide two">
<div class="box" id="box17">
</div>
</div>
<div class="box" id="box18"></div>
<div class="box" id="box19"></div>
<div class="box" id="box20"></div>
<br><br>
<div class="box" id="box21"></div>
<div class="box" id="box22"></div>
<div class="box" id="box23"></div>
<div class="box" id="box24"></div>
</div>
</div>
</div>
<div class="align-right">
<h1 id="manage">You are Managing:</h1>
<h2>Options:</h2>
<h3>Play Link Destination:</h3>
<label class="container-1">External Link
<input type="radio" checked="checked" name="link" id="ext">
<span class="checkmark"></span>
</label>
<label class="container-1">Emulator Link
<input type="radio" name="link" id="emu">
<span class="checkmark"></span>
</label>
<br>
<h3>Rom Location</h3>
<label class="container-1">Internal (Pull Roms from us)
<input type="radio" checked="checked" name="location" id="internal">
<span class="checkmark"></span>
</label>
<label class="container-1">External (Give your own Rom Link)
<input type="radio" name="location" id="external">
<span class="checkmark"></span>
</label>
<br>
<h3>Emulator Core Type:</h3>
<label class="container-1">GBA
<input type="radio" name="core" id="gba">
<span class="checkmark"></span>
</label>
<label class="container-1">NES
<input type="radio" name="core" id="nes">
<span class="checkmark"></span>
</label>
<label class="container-1">NDS
<input checked="checked" type="radio" name="core" id="nds">
<span class="checkmark"></span>
</label>
<label class="container-1">SegaMD
<input type="radio" name="core" id="segaMd">
<span class="checkmark"></span>
</label>
<br>
<h3>External Link Or Rom Link</h3>
<input type="text" id="extLink" name="link" placeholder="Link">
<br>
<h3>Background Image Link:</h3>
<input type="text" id="image-link" name="image" placeholder="Image Link">
<br>
<h3>Preview Image Link:</h3>
<input type="text" id="preview-link" name="preview" placeholder="Preview Link">
<br>
<button id="save">Save</button>
<button id="clear-settings" onclick="localStorage.clear();">Clear All Setttings</button>
<br>
<button id="export">Download Grid Config</button>
<br>
<input type="file" id="importFile">
<p>Import Grid Config Above</p>
</div>
<script src="js/tile-manager.js"></script>
</body>
</html>