-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsysview.html
More file actions
42 lines (39 loc) · 1.37 KB
/
sysview.html
File metadata and controls
42 lines (39 loc) · 1.37 KB
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
<!DOCTYPE html>
<html>
<head>
<style>
/* to remove the top and left whitespace */
* {
margin:0;
padding:0;
}
/* just to be sure these are full screen*/
html, body {
width:100%;
height:100%;
}
/* To remove the scrollbars */
canvas {
display:block;
}
/* to cloak vue elements while vue is compiling/starting up */
[v-cloak] {
display: none;
}
</style>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" crossorigin="anonymous">
</head>
<body onload="init()">
<canvas id="canvas" width="800" height="600"></canvas>
<!-- Vue.js -->
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
<!-- production: <script src="https://cdn.jsdelivr.net/npm/vue"></script> -->
<script src="zui/shapes.js"></script>
<script src="zui/geometry.js"></script>
<script src="zui/draw.js"></script>
<script src="zui/input.js"></script>
<script src="zui/interaction.js"></script>
<script src="zui/container.js"></script>
<script src="js/sysview.js"></script>
</body>
</html>