-
Notifications
You must be signed in to change notification settings - Fork 0
/
webVR.html
62 lines (44 loc) · 2.57 KB
/
webVR.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
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
<!DOCTYPE html>
<html>
<head>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
<title> A-frameVR </title>
</head>
<body>
<a-scene>
<!-- texts -->
<a-text value="Hello!" color="#BBB"
position="-0.3 1 -3" scale="1.5 1.5 1.5"></a-text>
<a-text value="Did you know they are open source?" color="#BBB"
position="-2.3 0.7 -3" scale="1.5 1.5 1.5"></a-text>
<a-text value="Take a look! " color="#BBB"
position="-0.9 0.4 -3" scale="1.5 1.5 1.5"></a-text>
<!-- boxes -->
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRrknpnATRCmb_aPGM1T7lM9bu-puX-gVIRIJPuHRpFZK9KCs76" position="-5 4 -7" rotation="30 30 45" scale="2 2 2">
<a-animation attribute="rotation" to="120 0 360" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQh7SUJrEQpdynNCrw4KZrUtSjvYx7ud8XcrKD_r7H839xqjGOzmA" position="-5 8 -13" rotation="30 45 10" scale="2 2 2">
<a-animation attribute="rotation" to="120 120 360" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRG3fHJ9TMvjI6bBvTkhmE5bKiCqchrprrngN3AphxZaeNl2jeL8g" position="-1 13 -16" rotation="30 45 10" scale="2 2 2">
<a-animation attribute="rotation" to="100 360 60" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLJOz6kNyVcHU7ToviyowMPL9rhWy2L1T5IRV_zbzMsXUj70McfA" position="3 13 -16" rotation="30 45 10" scale="2 2 2">
<a-animation attribute="rotation" to="120 30 360" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ4IDMtnQCGrxrnydF-8s74QjNhK1Vu5a7UCn_sSon-TWAhN5MbdQ" position="5 8 -13" rotation="30 45 10" scale="2 2 2">
<a-animation attribute="rotation" to="120 30 360" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-box src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJ15PZGaWs_xXiaZE_u3OFp4RIvs0d9o5lGJmTAT2Xf9l4yX0N" position="6 4 -7" rotation="30 45 10" scale="2 2 2">
<a-animation attribute="rotation" to="360 30 60" direction="alternate" dur="2000"
repeat="indefinite"></a-animation>
</a-box>
<a-sky color="#222"></a-sky>
</a-scene>
</body>
</html>