-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.72 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
<html lang="en">
<head>
<title>Threejs-viewer-demo</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"/>
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="css/3Dui.css"/>
<script src="./js/jszip.min.js"></script>
<script src="./js/jszip-utils.min.js"></script>
<script src="./js/bundle.js" defer></script>
</head>
<body>
<div class="annotation_window" id="annotation_edit">
<div class="annotation_editor">
<input id="annotation_id" type="hidden" value="">
<div class="contextmenu_item">Edit Notification</div>
<hr>
<input id="annotation_label" type="text" placeholder="label">
<input id="annotation_title" type="text" placeholder="title">
<textarea id="annotation_description" rows="6" placeholder="description"></textarea>
<div class="annotation_buttons">
<button id="save_annotation" class="button_as_link">Save</button>
<button id="cancel_annotation" class="button_as_link">Cancel</button>
</div>
</div>
</div>
<div class="annotation_window" id="right_click_contextmenu">
<hr>
<div class="annotation_creator">
<button id="create_annotation" class="button_as_link contextmenu_item">Add Notification</button>
</div>
<hr>
</div>
<div class="annotation_window" id="annotation_contextmenu">
<hr>
<div class="annotation_edit">
<button id="edit_annotation" class="button_as_link contextmenu_item">Edit Notification</button>
</div>
<hr>
<div class="annotation_remove">
<button id="remove_annotation" class="button_as_link contextmenu_item">Remove Notification</button>
</div>
<hr>
</div>
</body>
</html>