-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (97 loc) · 3.87 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
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
<!DOCtype html>
<html lang="en-US">
<head>
<!--title-->
<title>minecraft skin zipper</title>
<!--Meta data for search engines-->
<meta charset="utf-8">
<meta name="author" content="Nova67">
<meta name="description" content="pack all your favorite skins into a single skin pack and use them everywhere. Developed by Innova67">
<!--Open Graph Meta Data-->
<meta property="og:image" content="https://i.imgur.com/pkA03Yx.jpg?1">
<meta property="og:title" content="Minecraft skin zipper">
<meta property="og:description" content="pack all your favorite skins into a single skin pack and use them everywhere. Developed by Innova67">
<!--Twitter meta Data-->
<meta name="twitter:card" content="summary" />
<meta name="twitter:creator" content="@innova67" />
<meta property="og:url" content="https://innova67.github.io/skin-zipper/" />
<!--Favicon-->
<link rel="shortcut icon" href="media/icons/icon.png" type="image/x-icon">
<!--CSS-->
<link rel="stylesheet" href="style.css">
<!-- Google Fonts -->
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic|Roboto+Condensed:300italic,400italic,700italic,400,300,700'
rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700' rel='stylesheet'
type='text/css'>
<!-- Skin Viewer Stylesheet --->
<link rel="stylesheet" href="minecraft-skinviewer.css">
<!--scripts-->
<script src="filesaver.js"></script>
<script src="jszip.js"></script>
</head>
<body>
<header>
<h1>Minecraft Skin zipper</h1>
<p class="intro">pack all your favorite skins into a single skin pack and use them everywhere</p>
</header>
<ol>
<li>load your skins</li>
<li>add a name to the skin</li>
<li>choose a name for your skin pack</li>
<li>download and enjoy!</li>
</ol>
<!--form file-->
<form method="POST" enctype="multipart/form-data">
<div>
<label for="skin_uploads">Choose skins to upload (PNG)</label>
<input type="file" id="skin_uploads" name="skin_uploads" accept=".png" multiple>
</div>
<!--skins container-->
<ul>
<li>it's better if you use short names for your skins</li>
<li>your skins can be 16x16, 32x32, 64x64 or 128x128</li>
<li>you can add up to 50 skins</li>
<li>skin and pack names support chat color codes! <a href="http://minecraft.tools/en/color-code.php" target="_blank">
-chat-color-codes- </a></li>
</ul>
<p class="aux">your skins</p>
<div class="preview">
<p id="null" style="color:rgba(255, 255, 255, 0.6)">No files currently selected for upload</p>
<table id="skins">
<tr class="row-1"></tr>
<tr class="row-2"></tr>
<tr class="row-3"></tr>
<tr class="row-4"></tr>
<tr class="row-5"></tr>
<tr class="row-6"></tr>
<tr class="row-7"></tr>
<tr class="row-8"></tr>
<tr class="row-9"></tr>
<tr class="row-10"></tr>
</table>
</div>
</form>
<!--reset button-->
<div>
<!--<button type="button" id="reseteo">reset files</button>-->
<button type="button" id="reseteo" onClick="window.location.href=window.location.href">reset files</button>
</div>
<!--zip name-->
<div id="zipn">
<p class="aux">name your skin pack</p>
<form action="main.js">
<input type="text" name="zip" id="zipname" value="myPack" placeholder="myPack" maxlength="30">
</form>
</div>
<!--download button-->
<div class="finaldw">
<p id="binf" style="color:rgba(255, 255, 255, 0.6)"> upload skins before download</p>
<button type="button" id="download" disabled="disabled">DOWNLOAD</button>
</div>
<footer>
<p>website Developed by <a href="https://twitter.com/innova67" target="_blank">Innova67</a> under GNU license v3.0</p>
</footer>
</body>
<script src="main.js"></script>
</html>