-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (37 loc) · 1018 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html>
<head>
<title>Three Js Skybox Wrapping</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Three Skybox Wrapping">
<link rel="stylesheet" type="text/css" href="/styles/global.css">
</head>
<body>
<style>
body {
margin: 0
}
</style>
<div id="main">
<div id="second-half" class="md-6 sm-12">
<div id="texture-container">
<img id="texture-image" src="images/cubemap3x4.jpg" style="display: none;" />
<video id="texture-video" autoPlay muted controls='' loop style="max-width: 100%; max-height: 100%;" />
</div>
<div id="texture-label">
<h1>Texture</h1>
</div>
</div>
<div id="first-half" class="md-6 sm-12">
<div id="scene-container">
</div>
<div id="scene-label">
<h1>Mesh</h1>
</div>
</div>
</div>
</div>
<script type="module" src="scripts/main.js"></script>
</body>
</html>