-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresults.html
More file actions
102 lines (86 loc) · 2.21 KB
/
results.html
File metadata and controls
102 lines (86 loc) · 2.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>抓取结果</title>
<style>
body {
max-width: 800px;
margin: 40px auto;
font-family: monospace;
padding: 20px;
background-color: #f3f4f6;
}
.container {
background: white;
padding: 30px;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h1 {
margin-top: 0;
color: #111827;
font-size: 24px;
}
.status-bar {
margin-bottom: 15px;
padding: 10px;
border-radius: 4px;
font-weight: bold;
}
.success {
background-color: #d1fae5;
color: #065f46;
}
textarea {
width: 100%;
height: 400px;
border: 1px solid #d1d5db;
border-radius: 4px;
padding: 10px;
font-family: monospace;
font-size: 14px;
box-sizing: border-box;
}
.actions {
margin-top: 15px;
display: flex;
gap: 10px;
}
button {
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.2s;
}
.btn-copy {
background-color: #2563eb;
color: white;
}
.btn-copy:hover {
background-color: #1d4ed8;
}
.btn-close {
background-color: #9ca3af;
color: white;
}
.btn-close:hover {
background-color: #6b7280;
}
</style>
</head>
<body>
<div class="container">
<h1>抓取到的域名列表</h1>
<div id="status" class="status-bar" style="display:none;"></div>
<textarea id="resultBox" readonly></textarea>
<div class="actions">
<button id="copyBtn" class="btn-copy">复制</button>
<button id="closeBtn" class="btn-close">关闭页面</button>
</div>
</div>
<script src="results.js"></script>
</body>
</html>