-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
35 lines (35 loc) · 1.19 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HeightMap Picker</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://rawgit.com/rvera/image-picker/master/image-picker/image-picker.min.js"></script>
<script src="config.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="nav">
<div id="left">
<img id="view" src="" width="200px" height="200px"/>
</div>
<div id="right">
<div class="div-pad">
<h1>Command</h1>
<input type="text" id="command" name="command" value='//brush height %image%' onfocusout="updateView()" onkeydown="if(event.keyCode==13){updateView()}">
</div>
<div class="div-pad">
<h1>Output</h1>
<input alt="Automatically copied to clipboard" type="text" id="output" name="output" value="<Please select an image>" disabled>
<p id="alert" hidden>Copied to clipboard</p>
</div>
</div>
</div>
<div id="content">
<div class="padding"></div>
<select class="image-picker show-labels show-html">
</select>
</div>
<script src="index.js"></script>
</body>
</html>