forked from soggybag/shared-canvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (76 loc) · 2.42 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html>
<head>
<title>Shared Canvas</title>
<style>
body,
html {
height: 100%;
}
body {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
#canvas {
border: 1px solid;
}
</style>
</head>
<body>
<h1>Shared Canvas</h1>
<canvas id="canvas" width="678" height="565"></canvas>
<!-- Don't edit main -->
<script src="main.js" type="module"></script>
<!-- 4, 3 Mitchell -->
<script src="mitchell.js" type="module"></script>
<script src="sandy.js" type="module"></script>
<!-- 0, 0 Ernest -->
<!-- 0, 1 Megan -->
<script src="megan.js" type="module"></script>
<!-- 2, 0 Matthew -->
<script src="matthew.js" type="module"></script>
<!-- 4, 0 Ali -->
<script src="ali.js" type="module"></script>
<!-- 2, 1 Jarquevious -->
<!-- 2, 2 Joanelly -->
<!-- 2, 3 Alex -->
<script src="alex.js" type="module"></script>
<!-- 3, 0 Starlight -->
<script src="starlight.js" type="module"></script>
<!-- 3, 2 Danika -->
<!-- 3, 4 Chao -->
<script src="chao.js" type="module"></script>
<!-- 0, 4 Jay -->
<!-- 4, 1 Mario -->
<!-- 5, 1 Gobind -->
<script src="gobind.js" type="module"></script>
<!-- 4, 4 Tian -->
<script src="tian.js" type="module"></script>
<!-- 5, 0 Timo -->
<!-- 0, 2 Dino -->
<script src="dino.js" type="module"></script>
<!-- 0, 3 Yin -->
<script src="yin.js" type="module"></script>
<!-- 1, 0 Jonathan -->
<script src="jonathan.js" type="module"></script>
<!-- 1, 4 Zach -->
<script src="zach.js" type="module"></script>
<!-- 3, 1 Chris -->
<script src="chris.js" type="module"></script>
<!-- 2, 4 Ryan -->
<script src="ryan.js" type="module"></script>
<!-- 1, 2 Cao -->
<script src="cao.js" type="module"></script>
<!-- 4, 2 Anneka -->
<script src="anneka.js" type="module"></script>
<!-- 1, 3 Kash -->
<script src="kash.js" type="module"></script>
<!-- 1, 1 Philippos -->
<script src="philippos.js" type="module"></script>
<!-- 3, 3 Luis -->
<script src="luis.js" type="module"></script>
</body>
</html>