-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
42 lines (41 loc) · 1.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
html {
font-family: sans-serif;
/* 1 */
line-height: 1.15;
/* 2 */
-ms-text-size-adjust: 100%;
/* 3 */
-webkit-text-size-adjust: 100%;
/* 3 */
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
body {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
font-size: 12px;
line-height: 1.5;
color: #555;
background-color: #fff;
}
</style>
</head>
<body>
<div style="float: left;" id="app"></div>
<div style="float: left;" id="depth"></div>
<script src="https://cdn.bootcss.com/datejs/1.0/date.min.js"></script>
<script src="https://cdn.bootcss.com/socket.io/1.7.3/socket.io.min.js" charset="utf-8"></script>
<script src="./dist/KLine.js" charset="utf-8"></script>
</body>
</html>