-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathaframeroomart5.html
45 lines (37 loc) · 2.12 KB
/
aframeroomart5.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
<html>
<head>
<script src="https://aframe.io/releases/0.8.0/aframe.min.js"></script>
</head>
<body>
<a-scene>
<a-assets>
<img crossorigin="anonymous" id="scream" src="https://res.cloudinary.com/dougsillars/image/upload/w_512,q_auto/v1551634938/scream_qbwybi.jpg">
<img crossorigin="anonymous" id="mona" src="https://res.cloudinary.com/dougsillars/image/upload/w_512,q_auto/v1551634946/monalisa_nlcskz.jpg">
<img crossorigin="anonymous" id="picasso" src="https://res.cloudinary.com/dougsillars/image/upload/w_512,q_auto/v1551634942/Mural_del_Gernika_s9ldah.jpg">
<img crossorigin="anonymous" id="starry" src="https://res.cloudinary.com/dougsillars/image/upload/w_512,q_auto/v1552460601/VanGogh-starry_night_qoohur.jpg">
</a-assets>
<!-- right wall-->
<a-plane position="4 2 0" rotation="0 -90 0"width="8" height="4" color="#7BC8A4"></a-plane>
<!-- left wall-->
<a-plane position="-4 2 0" rotation="0 90 0"width="8" height="4" color="#7BC8A4"></a-plane>
<!-- front wall-->
<a-plane position="0 2 -4" rotation="0 0 0"width="8" height="4" color="#7BC8A4"></a-plane>
<!-- back wall-->
<a-plane position="0 2 4" rotation="0 180 0"width="8" height="4" color="#7BC8A4"></a-plane>
<!-- ceiling -->
<a-plane position="0 4 0" rotation="90 0 0"width="8" height="8" color="blue"></a-plane>
<!-- floor -->
<a-plane position="0 0 0" rotation="-90 0 0"width="8" height="8" color="gray"></a-plane>
<!-- adding a box with art-->
<a-box position="-2 2 -4" scale="0.92 0.74 0.1" src="#starry"></a-box>
<a-box position="0 2 -4" scale="0.73 0.91 0.1" src="#scream"></a-box>
<a-box position="2 2 -4" scale="0.53 0.77 0.1" src="#mona"></a-box>
<!--2nd wall -->
<a-box position="-4 2 0" scale="4 2 0.1" rotation="0 90 0" src="#picasso"></a-box>
<!--3rd wall -->
<a-box position="4 2 0" scale="2.76 2.22 0.1" rotation="0 -90 0" src="#starry"></a-box>
<!-- 3D model!!-->
<a-sky color="#ECECEC"></a-sky>
</a-scene>
</body>
</html>