-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (53 loc) · 1.42 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<title>link google</title>
<style type="text/css">
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.opration-btns {
width: 100%;
max-width: 580px;
margin-top: 10px;
margin-bottom: 12px;
}
.opration-btns .copy-links-btn,
.opration-btns .clear-btn {
margin-left: 12px;
float: right;
}
#content-area {
width: 100%;
max-width: 580px;
box-sizing: border-box;
font-size: 15px;
color: #000;
}
#result {
line-height: 2;
color: #555;
}
#result .link-line:hover {
transition: all 0.5s ease;
color: #000;
cursor: pointer;
}
</style>
</head>
<body>
<textarea id="content-area" autofocus rows="16" placeholder="请输入文本"></textarea>
<div class="opration-btns">
<input class="addtion-kw" placeholder="追加关键词">
<button class="copy-links-btn">复制所有链接</button>
<button class="clear-btn">清除</button>
</div>
<h3> links </h3>
<div id="result"></div>
<script src="./mockData.js"></script>
<script src="./main.js"></script>
</body>
</html>