-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (57 loc) · 2.5 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
66
67
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>让我帮你百度一下 | Let Me Baidu That For You</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="css/style.css" />
<script src="js/jquery.min.js"></script>
<script src="js/base64.min.js"></script>
<script src="js/clipboard.min.js"></script>
<script src="js/script.js"></script>
</head>
<body>
<section id="search">
<div class="search-header">
<h2>
<span class="let-me" style="font-size: 40px;">让我帮你</span>
<img src="img/baidu_logo.png" alt="百度" title="让我帮你百度一下">
<span class="for-you" style="font-size: 40px;">一下</span>
</h2>
</div>
<form id="search-form">
<div class="search-form-group">
<div class="search-form-input">
<input type="search" id="kw" maxlength="255" autocomplete="off" required>
</div>
<button id="search-submit">百度一下</button>
</div>
</form>
</section>
<section id="function">
<p id="tips" style="font-size: 20px;">输入问题内容,然后点击百度一下</p>
<button id="stop">快停下!我是自己人</button>
<div id="output">
<textarea style="resize: none;overflow-y: auto;" id="url-output" rows="3" readonly></textarea>
<div class="tool-btns">
<button data-clipboard-target="#url-output" style="font-size: 20px;">复制</button>
<button id="preview" style="font-size: 20px;">预览</button>
</div>
</div>
</section>
<footer id="footer">
<ul class="footer-left">
<li style="font-size: 20px;"><a href="../" target="_blank">暗影博客</a></li>
</ul>
<ul class="footer-right">
<li style="font-size: 20px;">* 本站与百度公司没有任何联系,Baidu 以及本站出现的百度公司 Logo 是百度公司的商标</li>
</ul>
</footer>
<div id="arrow"></div>
</body>
</html>