-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmvList.html
91 lines (90 loc) · 1.57 KB
/
mvList.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
<html><head>
<meta charset="UTF-8">
<style>
@media (prefers-color-scheme: dark) {
body {
background: #111;
color: #eee;
}
}
body {
width:48em;
height:auto;
overflow-x: hidden;
overflow-y: auto;
}
body,h2,div,dl,dd {
margin: 0;
}
h2 {
text-align: center;
}
.box {
border: 2px solid #8bd;
overflow: hidden;
width:auto;
height:auto;
min-height:18em;
overflow: hidden;
padding: 3px;
}
dl {
overflow: hidden;
padding-bottom: 1px;
}
dt {
color: #333;
background: none repeat scroll 0 0 #C3DFEA;
display: inline-block;
float: left;
font-size: 1em;
width: 100%;
cursor: pointer;
word-wrap: break-all;
word-break: break-all;
margin: auto auto 2px;
}
.last-col {
width: 7%;
color: #35a;
cursor: pointer;
text-align: center;
}
dd.idx {
width: 8%;
color: purple;
font-weight: bold;
}
dd {
border-bottom: 1px dashed #CCC;
display: inline;
height: 1.5em;
float: left;
font-size: 1.3em;
padding: 2px 0;
text-align: left;
text-indent: 5px;
vertical-align: middle;
width: 42%;
}
#copyList {
float: right;
}
</style>
</head>
<body>
<h2>已捕获媒体列表</h2>
<div class="act">
<a id="clearList" href="javascript:void(0)">清除列表</a>
<a id="copyList" href="javascript:void(0)">复制列表</a>
</div>
<div class="box">
<dl>
<dd>媒体类型</dd><dd>媒体字节大小</dd><dd class="last-col">播放</dd>
<dt>地址栏</dt>
</dl>
</div>
<script src="./utils.js"></script>
<script type="module" src="./mv-list.js"></script>
</body>
</html>