-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (41 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>eBoard</title>
<meta name="description" content="" />
<meta name="author" content="Yung-Shun SU" />
<meta name="viewport" content="width=device-width; initial-scale=1.0, user-scalable=yes" />
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<!-- <link rel="shortcut icon" href="/favicon.ico" /> -->
<!-- <link rel="apple-touch-icon" href="/apple-touch-icon.png" /> -->
<link rel="stylesheet" href="./css/main.css" />
<script type="text/javascript" src="libs/jquery-1.7.1.js"> </script>
<script src="http://eboard-dsxs.rhcloud.com:8000/socket.io/socket.io.js"></script>
<!-- <script src="http://172.20.10.12:8088/socket.io/socket.io.js"></script> -->
</head>
<body style="margin:0px; background-color: #353; background-image: url('./imgs/puzzle.gif')">
<div align="center"><canvas id="drawPanel" width="800" height="0" style="background-color: #fff; border-radius: 3px;"> </canvas></div>
<div id="status"> </div>
<div id="setting">
<div id="WL" class="L"> </div>
<div id="KL" class="L"> </div>
<div id="BL" class="L"> </div>
<div id="RL" class="L"> </div>
<div id="WM" class="M"> </div>
<div id="KM" class="M"> </div>
<div id="BM" class="M"> </div>
<div id="RM" class="M"> </div>
<div id="WS" class="S"> </div>
<div id="KS" class="S"> </div>
<div id="BS" class="S"> </div>
<div id="RS" class="S"> </div>
</div>
</body>
<script src="js/CsCtrl.js"></script>
<script src="js/Commands.js"></script>
<script src="js/main.js"></script>
</html>