-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
30 lines (29 loc) · 1.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Easy Sphere Viewer</title>
<link rel="stylesheet" href="resources/custom.css">
<link rel="stylesheet" href="resources/libraries/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/@fortawesome/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="node_modules/photo-sphere-viewer/dist/photo-sphere-viewer.css">
</head>
<body>
<div class="container-fluid d-flex align-items-center min-vh-100 start">
<div class="file-dialog p-4 mx-auto" onclick="openNewSphere()">
<i class="fas fa-circle-notch mr-3"></i> Open a sphere
</div>
<div class="file-dialog p-4 mx-auto" onclick="ipcRenderer.send('open-cubemap-modal');">
<i class="fas fa-cube mr-3"></i> Open a cubemap
</div>
</div>
<div id="viewer"></div>
<script>window.$ = window.jQuery = require('jquery')</script>
<script src="resources/libraries/bootstrap/bootstrap.min.js"></script>
<script src="node_modules/three/build/three.min.js"></script>
<script src="node_modules/uevent/browser.js"></script>
<script src="node_modules/photo-sphere-viewer/dist/photo-sphere-viewer.js"></script>
<script src="viewer.js"></script>
<script src="interface.js"></script>
</body>
</html>