-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtp2.html
40 lines (32 loc) · 872 Bytes
/
tp2.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
<!doctype html>
<html>
<head>
<title></title>
<style>
html{
height: 100%;
}
body{
padding: 0;
margin: 0;
height: 100%;;
}
#my-canvas{
width: 100%;
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<center>
<canvas id="my-canvas">
Your browser does not support the HTML5 canvas element.
</canvas>
</center>
<script type="text/javascript" src="js/gl-matrix.js"></script>
<script src="js/dat.gui.js"></script>
<script src="js/jquery.js"></script>
<script type="module" src= "/js_tp/main.js"></script>
</body>
</html>