-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-pc.html
94 lines (91 loc) · 3.86 KB
/
index-pc.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Icondata Tool</title>
<meta charset="utf-8">
<meta content="NeoDC/HaydenK." name="author">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href="https://fonts.googleapis.com/css?family=Roboto|Josefin+Sans:300,300i,400" rel="stylesheet">
<link href="page.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<header class="topBar">
<div class="topBarBottom">
<h2>Dreamcast VMU Icondata Creator</h2>
</div>
<div class="topBarBottom">
<a href="index.html">Icon Creator</a>
<span style="margin: 1em;font-size: 18px;"> </span>
<a href="Combine.html">Combine 2 seperate icons</a>
<span style="margin: 1em;font-size: 18px;"> </span>
<a href="browser.html">Image Gallery</a>
</div>
</header>
<main>
<div class="select">
<div style="display: flex;">
<div style="flex: 5">
<p>
<h3>Select File: </h3>
<input type="file" id="_file">
<input type="button" id="_submit" value="Upload!">
</p>
<div class="progress_outer">
<div id="_progress" class="progress"></div>
</div>
</div>
<div style="flex: 1;height: 48px;line-height: 48px;white-space: nowrap;overflow: hidden;" id="status"></div>
</div>
</div>
<div id="vmu" style="visibility: hidden;">
<div>
<div>
<h3>Image Previews</h3>
<div id="Previews">
<div id="ImgPreview"></div>
<div id="bwPreview"></div>
</div>
</div>
<div>
<h3>Grayscale Adjust</h3>
<div class="slidecontainer">
<input type="range" min="1" max="15" value="8" class="slider" id="myRange">
</div>
</div>
</div>
<div style="display: table">
<div style="display:table">
<div style="float:left;margin: 0px 10px 10px 10px;">
<h3>Invert</h3>
<label class="container">
<input type="checkbox" checked="checked" id="myCheck" onclick="updateBWImgHTML()">
<span class="checkmark"></span>
</label>
</div>
<div style="float:left;margin: 0px 10px 10px 10px;">
<h3>Dither</h3>
<label class="container">
<input type="checkbox" id="myDither" onclick="updateBWImgHTML()">
<span class="checkmark"></span>
</label>
</div>
</div>
<div style="margin-top: 2em;">
<div style="margin: 0px 10px 10px 10px;">
<h3>Palette</h3>
<div id="palette"></div>
</div>
</div>
</div>
<form id="form" name="form">
<input id="submit" onclick="saveVMU()" class="button" value="Submit">
</form>
<div id="save"></div>
</div>
</div>
</main>
<script src="ajax.js"></script>
<script src="upload.js"></script>
</body>
</html>