-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1.html
More file actions
64 lines (57 loc) · 1.37 KB
/
1.html
File metadata and controls
64 lines (57 loc) · 1.37 KB
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
63
64
<!--
METAVERSO QUICK START, 2a Edição
Material Didático
Leonardo Azzi Martins, José Rodolfo Masiero e Plínio Ricardo Gonçalves
Abril de 2022
DBServer Assessoria de Sistemas de Informação LTDA
EXEMPLO 1: FOTO EQUIRETANGULAR (360)
-->
<!DOCTYPE html>
<html>
<head>
<title>Foto 360 - A-Frame</title>
<!-- IMPORTA O A-FRAME -->
<script src="https://aframe.io/releases/1.3.0/aframe.min.js"></script>
</head>
<body>
<!-- CONJUNTO DA CENA -->
<a-scene>
<!-- CÂMERA -->
<a-camera position="0 1.2 0">
<a-cursor></a-cursor>
</a-camera>
<!-- CÉU -->
<a-sky
color="#ECECEC"
src="https://cdn.glitch.global/a8822043-5948-448f-b273-e07c6ce381ab/image%205.png?v=1649767405430"
></a-sky>
<!-- CHÃO = PLANO -->
<a-plane
position="0 0 -4"
rotation="-90 0 0"
width="4"
height="4"
color="#7BC8A4"
></a-plane>
<!-- CUBO -->
<a-box
position="-1 0.5 -3"
rotation="0 45 0"
color="blue"
></a-box>
<!-- ESFERA -->
<a-sphere
position="0 1.25 -5"
radius="1.25"
color="#EF2D5E"
></a-sphere>
<!-- CILINDRO -->
<a-cylinder
position="1 0.75 -3"
radius="0.5"
height="1.5"
color="purple"
></a-cylinder>
</a-scene>
</body>
</html>