forked from cgcostume/cg1-beleuchtung-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.24 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
<html>
<head>
<title>Parcel Sandbox</title>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
integrity="sha256-YvdLHPgkqJ8DVUxjjnGVlMMJtNimJ6dYkowFFvp4kKs="
crossorigin="anonymous"
/>
</head>
<body>
<section class="container mt-5">
<div class="row">
<div class="col">
<h1>CG1 – <strong>Grundlagen der Beleuchtung</strong></h1>
<p class="text-muted">
<small id="gloperate-version">undefined</small>
</p>
</div>
</div>
<div class="row">
<div class="col ratio ratio-4x3">
<canvas
class="embed-responsive-item w-100"
id="canvas"
style="width: 100%; height: 100%;"
></canvas>
</div>
</div>
</section>
</body>
<script src="src/index.ts"></script>
<script>
document.getElementById("gloperate-version").innerHTML =
"webgl-operate version: unknown";
</script>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js"
integrity="sha256-cMPWkL3FzjuaFSfEYESYmjF25hCIL6mfRSPnW8OVvM4="
crossorigin="anonymous"
></script>
</html>