-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathscreen.html
More file actions
executable file
·40 lines (38 loc) · 1.15 KB
/
screen.html
File metadata and controls
executable file
·40 lines (38 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<script src="jquery/jquery-3.1.0.min.js" type="text/javascript"></script>
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="style.css">
<style>
body{
margin:0;
overflow-y: hidden;
}
canvas{
width:371px;
height:660px;
}
</style>
<script src="jquery/jquery-3.1.0.min.js" type="text/javascript"></script>
</head>
<body>
<canvas id="mat_canvas"></canvas>
<div class="mat_btn">
<button class="btn btn-info r32" id="mat_back">
<span class="glyphicon glyphicon-arrow-left"></span>
</button>
<button class="btn btn-info r32" id="mat_home">
<span class="glyphicon glyphicon-home"></span>
</button>
<button class="btn btn-info r32" id="mat_tasks">
<span class="glyphicon glyphicon-tasks"></span>
</button>
</div>
</body>
</html>
<script src="./lib/tcp.js"></script>
<script src="screen.js"></script>