-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (55 loc) · 1.96 KB
/
index.html
File metadata and controls
61 lines (55 loc) · 1.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ConcentratedtextMaker</title>
<script src="index.js" defer></script>
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<canvas id="canCon" width="800px" height="400px"></canvas>
<canvas id="canText" width="800px" height="400px"></canvas>
<img id="displayImg" width="800px" height="400px">
<div>
<input id="inputDisplayText" class="l-size" type="text">
<input id="inputUpdateButton" class="l-size" type="button" value="Update BG">
</div>
<div>
<span>Options</span>
<table border="1">
<thead>
<tr>
<th>設定項目</th>
<th>値</th>
</tr>
</thead>
<tbody>
<tr>
<td>
吹き出しの位置
</td>
<td>
<select id="fukidashiPosOption" class="option-input" >
<option value="0">なし</option>
<option value="1">左上</option>
<option value="2">左下</option>
<option value="3">右上</option>
<option value="4">右下</option>
</select>
</td>
</tr>
<tr>
<td>
吹き出しの鋭さ(0.5~1.2)
</td>
<td>
<input id="fukidashiSharpness" class="option-input" type="number" min="0.5", max="1.2", step="0.05", value="0.7">
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>