-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpw3.html
49 lines (49 loc) · 904 Bytes
/
pw3.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
<!DOCTYPE html>
<html>
<head>
<title>PW3</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style>
html, body {
margin: 0;
height: 100%;
}
#c {
width: 100%;
height: 100%;
display: block;
}
#MySphere {
position: absolute;
top: 10px;
right: 10px;
}
#MyCone{
position: absolute;
top: 200px;
right: 10px;
}
#MyCylinder{
position: absolute;
top: 360px;
right: 10px;
}
#Light{
position: absolute;
top: 100px;
Left: 10px;
}
#ShadowCamera{
position: absolute;
top: 300px;
Left: 10px;
}
</style>
<script type="text/javascript" src="/uil-gh-pages/build/uil.js"></script>
</head>
<body>
<canvas id="c"></canvas>
<script src="pw3.js" type="module"></script>
</body>
</html>