-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtres.html
54 lines (45 loc) · 1.37 KB
/
tres.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DEF y USE</title>
<script src='https://www.x3dom.org/x3dom/release/x3dom-full.js'></script>
<link rel='stylesheet' href='https://www.x3dom.org/x3dom/release/x3dom.css'>
<style>
body {
background-color: rgb(252, 237, 29);
color: white;
font-family: sans-serif;
margin: 0;
}
.fondo {
width: 100vw;
height: 100vh;
background: #000 url(./tres/fondochem.jpg)
}
</style>
</head>
<body>
<X3D class="fondo">
<Scene>
<Transform translation="-3.5 0 0" rotation="1 0 0 1.7">
<Transform DEF='Arco'>
<inline DEF="ARCOm" url="./tres/hexagono.x3d"></inline>
</Transform>
<Transform translation="1.75 0 0">
<shape USE="ARCOm" />
</Transform>
<Transform translation="3.5 0 0">
<shape USE="ARCOm" />
</Transform>
<Transform translation="5.25 0 0">
<shape USE="ARCOm" />
</Transform>
<Transform translation="7 0 0">
<shape USE="ARCOm" />
</Transform>
</Transform>
</Scene>
</X3D>
</body>
</html>