-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (29 loc) · 970 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Video</title>
<meta name="description" content="Video - A-Frame">
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
</head>
<body>
<a-scene stats>
<a-assets>
<video id="videoParis" preload="auto"
src="https://drive.google.com/file/d/1PThX2CmMLzC-AHVzAPQadJycHttLlzu2/view?usp=sharing"
width="160" height="90" autoplay loop="true"
crossOrigin="anonymous"></video>
<!--
SOURCE
Title: Paris Sunset - Timelapse (Public Domain)
Author: Mythomen <https://vimeo.com/mythomen>
URL: https://vimeo.com/147309712
-->
<a-entity material="shader: flat; src: #videoParis"
geometry="primitive: plane; width: 160; height: 90;"
position="0 60 -250"
rotation="0 35 0">
</a-entity>
</a-scene>
</body>
</html>