-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
50 lines (50 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>one-clipboard</title>
<style>
.wrap {
width: 300px;
min-height: 300px;
max-height: 400px;
padding: 10px;
padding-top: 0px;
overflow-y: scroll;
}
.list {
display: flex;
justify-content: flex-start;
flex-direction: column;
}
.item {
height: 40px;
line-height: 40px;
width: 100%;
border-bottom: 1px solid #e8e8e8;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.item:hover {
background: #e8e8e8;
}
.header {
text-align: center;
color: #1890ff;
/* color: "#1890ff"; */
font-size: 16px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="wrap" id="wrap" >
<div class="header" id="header">点击复制到粘贴板</div>
<div class="list" id="list"> </div>
</div>
</body>
<script src="js/jquery-3.3.1.min.js"></script>
<script src="js/clipboard.js"></script>
<script src="js/popup.js"></script>
</html>