-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentation.html
More file actions
28 lines (25 loc) · 960 Bytes
/
presentation.html
File metadata and controls
28 lines (25 loc) · 960 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="aframe.js"></script>
</head>
<body>
<a-scene>
<a-asserts img src="A-FrameResources/textures/clear-sunny-sky.jpg" id="sky" alt="">
</a-asserts>
</a-asserts>
<a-sky color="skyblue" src="#sky"></a-sky>
<a-plane color="green" position="0 -10 0" scale="500 500 100" rotation="-90 0 -90"></a-plane>
<!-- Table-->
<a-box scale="3 6 2" position="0 0 -20"> </a-box>
<a-cylinder position="0 3 -20" radius="5" height="0.5cm" color="blue"> </a-cylinder>
<a-box scale="3 3 4" position="-6 1 -15"></a-box>
<a-box scale="3 3 4" position=" 7 1 -15"></a-box>
<a-box scale="0.05 0.45 4" position=" 8.5 4 -15" height="7"></a-box>
<a-camera position="0 6 -2"></a-camera>
</a-scene>
</body>
</html>