-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
25 lines (22 loc) · 951 Bytes
/
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
<html>
<head>
<title>Panorama to 3D model generator</title>
<script type="text/javascript" src="https://threejs.org/build/three.js"></script>
<script type="text/javascript" src="https://threejs.org/examples/js/controls/OrbitControls.js"></script>
<script type="text/javascript" src="https://threejs.org/examples/js/controls/TransformControls.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="./lib/sceneManager.js"></script>
<script src="./lib/settingPanel.js"></script>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="upload-container">
<div id="drag-drop-input">
<div>Drag & drop panorama image file.<br>Or click to browse.</div>
</div>
<input id="input-image-file" type="file" accept="image/*" hidden>
</div>
<div id="canvas-container" style="display: none;"></div>
</body>
<script src="./script.js"></script>
</html>