-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (45 loc) · 1.84 KB
/
index.html
File metadata and controls
47 lines (45 loc) · 1.84 KB
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
<html>
<head>
<title>SOSSamplePanoramaTour</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style>body { margin: 0; }</style>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<!-- Attachment point for your app -->
<div id="initialize">
<div id="placeHolder">
<div style="background-image:url('/static_assets/SOSLAB_PANORAMA.jpg');height:50%;background-position:center;background-repeat: no-repeat;background-size: cover;"></div>
<div class="container px-md-3 px-sm-0">
<div class="col-md-12 mb-4 white-text text-center wow fadeIn">
<h3 class="display-3 font-weight-bold white-text mb-0 pt-md-5 pt-5">SOS랩 샘플프로젝트 #1</h3>
<h3 class="display-3 font-weight-bold white-text mb-0 pt-md-5 pt-5">파노라마 투어</h3>
<hr>
<h4 class="subtext-header mt-2 mb-4">
SOS랩 샘플 프로젝트 #1 파노라마 투어에 오신 것을 환영합니다.
</h4>
<h4 class="subtext-header mt-2 mb-4">
시작하시려면 "들어가기" 를 누르세요.
</h4>
<button type="button" class="btn btn-dark" onClick="enterApp();">들어가기</button>
</div>
</div>
</div>
</div>
<script src="./client.bundle?platform=vr"></script>
<script>
// Initialize the React 360 application
function enterApp() {
React360.init(
'index.bundle?platform=vr&dev=true',
document.getElementById('initialize'),
{
assetRoot: 'static_assets/',
}
);
const elem = document.getElementById('placeHolder');
elem.parentNode.removeChild(elem);
}
</script>
</body>
</html>