-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
32 lines (29 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<title>Image to HTML converter</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="index.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="dropZone">Drop your image here</div>
<div id="menu">
<div>
Line width: <input type="number" value=60 id='lineWidth'></input>
Background: <input type="text" value="000000" maxlength="7" id="imageBackround"></input>
CSS class prefix: <input type="text" value="i_" id="cssPrefix"></input>
Charset: <input type="text" value="01" id="charset"></input>
Font size: <input type="number" value="10" id="fontSize" min="1"></input>px
<button id="btnRender">Render</button>
<button id="btnCopyHTML">Copy HTML</button>
</div>
<div class="super">
<div class="subsuper" id="imagePreview"><canvas id="imageCanvas"></canvas></div>
<div class="subsuper" id="htmlImage"></div>
</div>
<textarea class="subsuper" id="htmlCode" placeholder="Here will be your HTML code"></textarea>
</div>
</body>
</html>