-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (46 loc) · 1.82 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/base.min.css">
<link rel="stylesheet" href="./css/index.min.css">
<title>Empty Image Generator</title>
</head>
<body>
<section class="main">
<h1>"空"(Empty)の画像生成機</h1>
<p>VRChatで書き込み用の空画像ほしいときとかに使えるかもしれないやつです</p>
<hr>
<section class="interface">
<section class="input-area">
<section>
ファイル名<br>
<input type="text" id="name" value="empty.png" placeholder="ファイル名">
</section>
<section>
画像設定<br>
<input type="number" class="inline" id="width" value="1920"> x <input type="number" class="inline"
id="height" value="1080">
<input type="color" id="color" class="inline" value="#000000">
</section>
<section>
透明度<br>
<input type="number" class="inline" id="alpha" value="1"> ←
<input type="number" class="inline" id="alphaPer" value="100">% ←
<input type="range" class="inline" id="alphaRange" value="100">
</section>
</section>
<section class="preview">
プレビュー<br>
<div class="background">
<div class="draw-area">
<span class="resolution"></span>
</div>
</div>
</section>
</section>
<button id="gen" onClick="gen()" class="btn">生成</button>
<script src="js/index.js"></script>
</section>
</body>
</html>