-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (83 loc) · 2.68 KB
/
index.html
File metadata and controls
86 lines (83 loc) · 2.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="assets/img/favicon.jpg" />
<title>USYD travel guide</title>
<script src="https://aframe.io/releases/0.7.1/aframe.min.js"></script>
<script src="js/play-on-window-click.js"></script>
<script src="js/play-on-vrdisplayactivate-or-enter-vr.js"></script>
</head>
<body>
<a-scene>
<a-videosphere
id="hero-video-container"
rotation="0 0 0"
src="#video"
play-on-window-click
play-on-vrdisplayactivate-or-enter-vr
></a-videosphere>
<a-assets>
<video
id="video"
style="display:none"
autoplay
loop
crossorigin="anonymous"
playsinline
webkit-playsinline
>
<source type="video/mp4" src="assets/vid/entrance_vid.mp4" />
</video>
</a-assets>
</a-scene>
<div
class="container d-flex align-items-center hero-content"
style="flex-flow: column; padding-top: 0;"
>
<div
class="col-xs-12 text-center not-selectable overlay-content"
id="hero-text"
style="top: 35vh;"
>
<h1>Welcome to the University of Sydney</h1>
<p>A travel guide for new students!</p>
<br /><br />
<small class="text-center">This is a 360 video. Click to drag.</small>
</div>
<div
class="col-xs-12 text-center not-selectable overlay-content"
style="bottom: 5%;"
>
<a href="/main.html" id="goto-main" data-type="page-transition">
<button id="goto-main-btn" class="btn btn-usyd selectable">
ENTER
</button>
</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
crossorigin="anonymous"
></script>
<script src="/js/main.js"></script>
</body>
</html>