-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpopup.html
More file actions
115 lines (99 loc) · 1.67 KB
/
popup.html
File metadata and controls
115 lines (99 loc) · 1.67 KB
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
<!DOCTYPE html>
<html>
<head>
<title>popup页</title>
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
body,div,p,ul,li{margin:0;padding:0;}
a { text-decoration: none; }
body {
font-family: 'Microsoft Yahei';
width: 300px;
min-height: 100px;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.channelChecked {
margin-bottom: 10px;
clear: both;
}
.channelChecked ul li {
position: relative;
list-style: none;
cursor: pointer;
width: 140px;
height: 110px;
background-size: 100% auto;
background-repeat : no-repeat;
float: left;
}
.channelChecked ul li p {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 22px;
line-height: 22px;
background-color: #FFF;
}
.content {
clear: both;
}
.upName {
position: relative;
font-size: 20px;
width: 100%;
height: 36px;
line-height: 36px;
background-color: #ff94b1;
}
.upName a {
padding-left: 40px;
color: #FFF;
display: block;
}
.face {
position: absolute;
top: 3px;
left: 5px;
width: 30px;
height: 30px;
border-radius: 15px;
}
.channelName {
font-size: 16px;
background-color: #ffcbd9;
}
.channelName a {
color: #666;
display: block;
}
.videoLink {
width: 100%;
height: 100%;
display: block;
z-index: 10;
}
.clean {
position: absolute;
top: 0;
right: 0;
width: 36px;
height: 20px;
line-height: 20px;
font-size: 14px;
background-color: #F66;
color: #FFF;
border-radius: 0 0 0 5px;
text-align: center;
z-index: 100;
}
</style>
</head>
<body>
</body>
<script src="js/jq.js"></script>
<script src="js/popup.js"></script>
</html>