-
Notifications
You must be signed in to change notification settings - Fork 0
/
chessApp.html
39 lines (33 loc) · 1.06 KB
/
chessApp.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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Chess</title>
<style>
body{ background-color: white;margin: 0px;overflow: hidden;}
#info {
position: absolute;
bottom: 0px;
left: 50px;
width: 30%;
text-align: left;
z-index: 1;
}
</style>
</head>
<body>
<div id="container"></div>
<div id="info">
<!-- <h2>Chess</h2> -->
</div>
<!-- Este enlace esta recomendado en la web de threejs -->
<script async src="https://unpkg.com/[email protected]/dist/es-module-shims.js"></script>
<!-- Declaracion del espacio de nombres three -->
<script type="importmap">
{ "imports": { "three": "./lib/three.module.js" } }
</script>
<!-- Sustituir por el el script propio -->
<!-- <script type="module" src="js/myscript.js"></script> -->
<script type="module" src="js/chess.js"></script>
</body>
</html>