-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathexample.html
More file actions
44 lines (34 loc) · 745 Bytes
/
example.html
File metadata and controls
44 lines (34 loc) · 745 Bytes
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
<!--
* @author changyanlong
* @email porschegt23@foxmail.com
* @qq 531365872
* @wechat numberwolf11
* @github github.com/numberwolf
-->
<!DOCTYPE html>
<html>
<head>
<title>example - decoder</title>
<style>
.draw-gl {
width: 960px;
height: 540px;
background-color: blue;
}
</style>
</head>
<body>
<canvas id="canvas" class='draw-gl' width="1280" height="720"></canvas>
<div>
<button id="start1-btn">Start1</button>
<button id="release1-btn">Release1</button>
</div>
<hr>
<canvas id="canvas2" class='draw-gl' width="1280" height="720"></canvas>
<div>
<button id="start2-btn">Start2</button>
<button id="release2-btn">Release2</button>
</div>
<script src="example-dist.js"></script>
</body>
</html>