-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (18 loc) · 728 Bytes
/
index.html
File metadata and controls
22 lines (18 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<meta name="apple-mobile-web-app-capable" content="yes">
<script src="https://aframe.io/releases/0.2.0/aframe.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<video id="SphereVideo" autoplay loop="true" src="video/SphereVideo.webm" webkit-playsinline>
</a-assets>
<!-- Using the asset management system. -->
<a-videosphere src="#SphereVideo"></a-videosphere>
<!-- Defining the URL inline. Not recommended but more comfortable for web developers. -->
<!--<a-videosphere src="video/SphereVideo.webm"></a-videosphere>-->
</a-scene>
</body>
</html>