This repository was archived by the owner on Dec 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (53 loc) · 2.07 KB
/
index.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
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>WebGL : Vanité</title>
<link rel="stylesheet" href="css/style-index.css">
<style>
body { margin: 0; }
canvas { width: 100%; height: 100% }
.centre{text-align: center;}
</style>
</head>
<body>
<!-- API importe du site de Three.js -->
<script src="http://threejs.org/build/three.min.js">
</script>
<script src="http://threejs.org/examples/js/loaders/OBJLoader.js">
</script>
<script src="http://threejs.org/examples/js/controls/OrbitControls.js">
</script>
<script src="https://threejs.org/examples/jsm/libs/stats.module.js">
</script>
<!-- Bibliotheques en local -->
<script src="../lib/Coordinates.js"></script>
<script src="../lib/jquery-1.8.3.min.js"></script>
<script src="../lib/dat.gui.min.js"></script>
<!-- Un titre centre -->
<!-- <h1 class="centre">Projet peinture : La vanite</h1> -->
<div class="lignes">
<div class="l1"></div>
<div class="l2"></div>
</div>
<div class="container-first">
<h1><span>WebGL </span><span>Project </span>
<span>painting: </span><span> La Vanité </span></h1>
<div class="container-btns">
<a href="rendu.html"><button class="btn-first b1">Rendering</button></a>
<a href="description.html"><button class="btn-first b2">Description</button></a>
</div>
</div>
<a href="https://github.com/Szarin/Vanite-WebGL">
<img src="res/image/github.png"
alt="Github project repository" class="logo">
</a>
<!-- Pour mettre le rendu Web GL centre -->
<!-- <div id="webGL" class="centre"></div> -->
<!-- Mon script avec un chemin relatif -->
<!-- <script src="vanite.js"></script>
<script>
addToDOM();// Execute la fonction qui ajoute le rendu
</script> -->
</body>
</html>