-
Notifications
You must be signed in to change notification settings - Fork 0
/
ARindex2.html
29 lines (29 loc) · 1.11 KB
/
ARindex2.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
<!DOCTYPE html>
<html>
<head>
<script src="aframe.min.js"></script>
<meta charset="utf-8">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body>
<a-scene>
<a-torus position="-2 1 -5" color="green" radius="1.2"
animation="property: rotation; to: 0 360 0; loop: true; dur: 5000">
</a-torus>
<a-plane width="7" height="7" rotation="-55 0 0" position="-2 -2 -5" color="purple"></a-plane>
<a-cylinder color="yellow" height="2" radius="0.05" position="-2 -1 -5"></a-cylinder>
<a-cylinder color="blue" height="2" radius="0.05" position="-3 -1 -5"></a-cylinder>
<a-torus-knot color="orange" radius="1.2" position="-3 1 -5"></a-torus-knot>
<a-plane width="9" height="2" position="3 1 -9"></a-plane>
<a-entity position="-0.5 1 -6">
<a-text value="Вітаємо у браузерній VR! Жадько Антон" color="black" width="10" align="center"></a-text>
</a-entity>
<a-sky color="grey"></a-sky>
</a-scene>
</body>
</html>