补充相关项目

This commit is contained in:
mengkunsoft
2020-09-05 10:40:11 +08:00
parent 3ea29f66bf
commit 75c87b285e
3 changed files with 8 additions and 5 deletions

View File

@@ -23,7 +23,7 @@
让我帮你百度一下 - 优化版
原始版本来自 bangbang http://lmbtfy.cn/ ,本在原作的基础上进行了重制,风格变更为新版百度 UI并适配了移动端
原始版本来自 bangbang http://lmbtfy.cn/ ,本项目在原作的基础上进行了重制,风格变更为新版百度 UI并适配了移动端
交互效果参考了 不会百度么?( http://buhuibaidu.me/ )
@@ -36,8 +36,10 @@
### 相关项目
-----
- Let Me Google That For You https://github.com/xb2016/lmgtfy
- Let Me Baidu That For You 原版 https://github.com/bangbang93/lmbtfy.cn
- [必应版] Ask and it is given https://github.com/MisterBoole/lmbtfy
- [谷歌版] Let Me Google That For You https://github.com/xb2016/lmgtfy
- [谷歌版] Let Me Google That For You https://github.com/yuxizhe/google
- [原版] Let Me Baidu That For You https://github.com/bangbang93/lmbtfy.cn
### 更新日志
-----

View File

@@ -151,6 +151,7 @@ html, body {
border-radius: 3px;
border: 1px solid #c8c8c8;
outline: none;
word-break: break-all;
}
#output textarea:focus {
border-color: #4285f4;

View File

@@ -22,7 +22,7 @@ $.getUrlParam = function(name) {
$(function() {
var $kw = $('#kw'),
$searchSubmit = $('#search-submit');
$searchSubmit = $('#search-submit'),
$urlOutput = $('#url-output'),
$tips = $('#tips'),
$stop = $('#stop'),
@@ -30,7 +30,7 @@ $(function() {
var stepTimeout, typeInterval;
/* 获取并解析查询参数 */
/* 获取并解析查询参数。参数加 Base64 编码是防止别人直接从链接中猜出了结果,而拒绝点击 */
var query = $.getUrlParam('q');
if(!!query) {
try {