-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (36 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Canvas Test</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css/style.css" rel="stylesheet">
<!-- 2. Configure SystemJS -->
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script>
System.config({
packages: {
scripts: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('scripts/App')
.then(null, console.error.bind(console));
</script>
</head>
<body>
<div>
<input id="valueSlider" type="range" min="0" max="100"/>
</div>
<div id="main">
<canvas id="canvas" width="800" height="600" style="margin: 20px"></canvas>
<div id="fpsFrame">
<label>FPS: </label>
<label id="fpsLabel"></label>
</div>
</div>
</body>
</html>