-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
77 lines (69 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Examples</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
<style type="text/css">
.red{
color:red;
}
.blue{
color:blue;
}
.table{
width:850px;
border: #c8c8c8 solid;
border-width: 1px 0 0 1px;
}
.thead th{
color:#000;
border: #c8c8c8 solid;
border-width: 0 1px 1px 0;
height: 33px;
line-height: 33px;
}
.tbody td{
text-align: center;
border: #c8c8c8 solid;
border-width: 0 1px 1px 0;
text-overflow: ellipsis;
height: 43px;
line-height: 43px;
}
.btn{
height: 30px;
line-height: 30px;
width: 50px;
border-radius: 5px;
border: none;
margin-left: 5px;
background: #e3e3e3;
}
.btn:hover,.sort:hover{
cursor: pointer;
}
</style>
</head>
<body>
<div id="app">
</div>
<!--<script type="text/javascript" src="./src/js/polyfill.js"></script>
<script type="text/javascript" src="./src/js/is.js"></script>
<script type="text/javascript" src="./src/js/htmldomapi.js"></script>
<script type="text/javascript" src="./src/js/eventlistener.js"></script>
<script type="text/javascript" src="./src/js/class.js"></script>
<script type="text/javascript" src="./src/js/attributes.js"></script>
<script type="text/javascript" src="./src/js/props.js"></script>
<script type="text/javascript" src="./src/js/style.js"></script>
<script type="text/javascript" src="./src/js/dataset.js"></script>
<script type="text/javascript" src="./src/js/vnode.js"></script>
<script type="text/javascript" src="./src/js/h.js"></script>
<script type="text/javascript" src="./src/js/snabbdom.js"></script>-->
<script type="text/javascript" src="./dist/js/snabbdom-bundles.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>