-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
78 lines (76 loc) · 2.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>-</title>
<!-- cookies -->
<link
rel="stylesheet"
type="text/css"
href="/css/smoothness/jquery-ui-1.12.1.custom.min.css"
/>
<link
rel="stylesheet"
type="text/css"
href="/lib/uniform/uniform.default.css"
/>
<link rel="stylesheet" type="text/css" href="/css/opensans/opensans.css" />
<link
rel="stylesheet"
type="text/css"
href="/css/font-awesome-4.6.3/css/font-awesome.min.css"
/>
<link rel="stylesheet" type="text/css" href="/css/popup.css" />
<link rel="stylesheet" type="text/css" href="/css/popup-accordion.css" />
<script type="text/javascript" src="/lib/jquery-3.3.1.min.js"></script>
<script
type="text/javascript"
src="/lib/jquery-ui-1.12.1.custom.min.js"
></script>
<script
type="text/javascript"
src="/lib/uniform/jquery.uniform.js"
></script>
<script type="text/javascript" src="/lib/object-watch.js"></script>
<script type="text/javascript" src="/js/utils.js"></script>
<script type="text/javascript" src="/js/data.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="main">
<form action="#" spellcheck="false">
<div id="buttons">
<button
type="button"
id="copy"
style="
color: rgb(255 255 255);
background-color: rgb(230 162 60);
border-color: rgb(230 162 60);
"
>
复制
</button>
<button
type="button"
id="paste"
style="
color: rgb(255 255 255);
background-color: rgb(230 162 60);
border-color: rgb(230 162 60);
"
>
粘贴
</button>
</div>
<div class="clear"></div>
<div id="table">
<p>加载中...</p>
</div>
</form>
</div>
<div id="loading"></div>
<script src="script.js"></script>
</body>
</html>