-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbotones.html
32 lines (30 loc) · 1.22 KB
/
botones.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>three.js webgl - dodecahedron buttons</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Título centrado superior -->
<div id="titleContainer">
<img src="img/Jei_Dsgn.png" alt="Jei_Dsgn Logo" id="pageTitle">
</div>
<div id="container"></div>
<!-- Ícono en la parte inferior derecha solo visible en móviles -->
<img id="mobileIcon" src="img/360.png" alt="360 Icon">
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/[email protected]/build/three.module.js",
"three/addons/": "https://unpkg.com/[email protected]/examples/jsm/"
}
}
</script>
<script type="module" src="script.js"></script>
</body>
</html>