Files
lmbtfy/index.html
mengkunsoft 85a33bb3c3 修复因 CDN 失效导致无法使用的问题
修复因 CDN 失效导致无法使用的问题
重构部分代码,界面更美观
2019-04-27 13:50:38 +08:00

61 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<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 href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div>
<h1 class="title">让我帮你 <img src="img/baidu_logo.png" class="baidu-logo" alt="百度" title="让我帮你百度一下"> 一下</h1>
<div class="mk-search-form">
<input type="text" id="kw">
<button id="search" class="anim-trans">百度一下</button>
</div>
</div>
<div id="instructions">输入一个问题,然后点击百度一下</div>
<div id="output-box">
<input type="text" id="output-link" readonly>
<div>
<button class="btn btn-copy anim-trans" data-clipboard-target="#output-link">复制</button>
<button class="btn anim-trans" id="btn-preview">预览</button>
</div>
</div>
</div>
<footer class="copyright">
Copyright &copy; <a href="https://mkblog.cn" target="_blank">mkblog.cn</a>
</footer>
<!-- 关于弹窗 -->
<div id="about-box" class="mk-pop-box">
<div class="mk-pop-box-inner">
<h3 class="mk-pop-box-title">专治各种伸手党</h3>
<div class="mk-pop-box-content">
<p>创意及原始代码来自 <a href="http://lmbtfy.cn/" target="_blank" rel="nofollow">lmbtfy.cn</a><a href="http://lab.mkblog.cn" target="_blank">孟坤网页实验室</a>完善了其前端界面。</p>
<p>须知本站与百度公司没有任何联系baidu 以及本站出现的百度公司 Logo 是百度公司的商标。</p>
</div>
<button class="mk-pop-box-btn anim-trans" onclick="$('#about-box').fadeOut(200);">我知道了</button>
</div>
</div>
<div class="about anim-trans" title="点击查看帮助信息" onclick="showAbout()">?</div>
<img src="img/arrow.png" id="arrow">
<script src="js/clipboard.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/lmbtfy.js"></script>
</body>
</html>