-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
118 lines (102 loc) · 2.35 KB
/
popup.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style type="text/css">
#panel {
width: 270px;
height: 180px;
overflow: hidden;
}
#item_list {
overflow-y: auto;
height: 160px;;
}
input {
width: 100px;
}
li {
list-style-type: none;
overflow: hidden;
}
ul {
padding-left: 0px;
}
.item {
position: relative;
overflow: hidden;
margin-top: 4px;
}
.item a.del {
float: right;
color: #3367d6;
text-decoration: none;
padding-right: 5px;
}
a.data {
color: #006699;
}
a.top {
text-decoration: none;
color: #3367d6;
}
span.percent {
width: 38px;
}
span {
display: inline-block;
width: 54px;
}
span.red {
color: #3367d6;
}
span.gray {
color: gray;
}
span.green {
color: green;
}
span.black {
color: black;
}
img.tip {
height: 100%;
float: left;
}
div.tip {
height: 90%;
overflow: hidden;
margin: 0 auto;
display: none;
}
div.tip h5{
float: left;
margin: 5px 0;
width: 85px;
}
</style>
</head>
<div id="panel">
<div id="add">
<input id="item"/>
<button id="add_item">add</button>
<button id="clear">clear</button>
<button id="tip">tip</button>
</div>
<div class="tip">
<img src="tip.png" class="tip">
<h5> </h5>
<h5>好用?求打赏!</h5>
<h5>二胡在此叩谢了!</h5>
</div>
<div id="item_list">
<ul>
<li id="last_item" hidden="hidden"></li>
</ul>
</div>
</div>
<div id="js">
<script type="text/javascript" charset="utf-8" src='jquery.js'></script>
<script type="text/javascript" charset="utf-8" src='finance.js'></script>
<script type="text/javascript" charset="utf-8" src='app.js'></script>
</div>
</html>