-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
59 lines (46 loc) · 1.66 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.3.min.js"></script>
<script src="scripts/chosen.jquery.min.js"></script>
<script src="scripts/physicsjs/physicsjs-full-0.5.1.js"></script>
<script src="scripts/three.min.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/Smidge.js"></script>
<script src="orgchem.js"></script>
<script src="scanner.js"></script>
<script src="iupac.js"></script>
<style>
body {
font-family: Helvetica
}
.errorMsg {
color: red;
}
</style>
<link rel="stylesheet" href="css/chosen.css">
</head>
<body>
<p>
Select molecule:
<select id="moleculeselect" class="my_select_box" data-placeholder="Select Molecule">
<option value=""></option>
</select>
</p>
<p>
<label>Enter IUPAC Name: </label>
<input id="iupacName" value="" size="40" />
<button id="parseButton">Parse</button>
</p>
<p><button id="startButton">Start</button> <button id="stopButton">Stop</button></p>
<p><label id="errorMsg" class="errorMsg">meh</label></p>
<p><input id="cameraHeight" type="range" min="1" max="1000" style="width:500px;" /></p>
<p><input id="cameraDistance" type="range" min="1" max="1000" style="width:500px;" /></p>
<p>Drag: <input id="dragRange" type="range" min="1" max="1000" style="width:200px;" /><label id="dragLabel"/></p>
<script>
</script>
<div id="3dcontainer">
</div>
</body>
</html>