-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbox.html
More file actions
37 lines (26 loc) · 736 Bytes
/
box.html
File metadata and controls
37 lines (26 loc) · 736 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Hello world!</title>
<script type="text/javascript" src="aframe.js" ></script>
</head>
<body>
<a-scene>
<a-assets>
<video id="prince" autoplay loop="true" src="img/lol.mp4" webkit-playsinline>
</a-assets>
<a-box
height="10" width="10" depth="10"
rotation="23 54 270"
position="0 0 -20"
scale="2 2 2"
src="#prince">
<a-animation attribute="rotation" repeat="indefinite" to="0 360 0"></a-animation>
</a-box>
<a-video src="#prince" width="5" height="5"></a-video>
<a-entity position="0 0 0">
<a-camera></a-camera>
</a-entity>
</a-scene>
</body>
</html>