From 883f7bf840f784554a1a7c5f2eb31cfb8ded78a5 Mon Sep 17 00:00:00 2001 From: littlefean <2028140990@qq.com> Date: Tue, 28 May 2024 22:56:33 +0800 Subject: [PATCH] init the project --- index.css | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ index.html | 24 +++++++++++++++++ index.js | 38 +++++++++++++++++++++++++++ 3 files changed, 137 insertions(+) create mode 100644 index.css create mode 100644 index.html create mode 100644 index.js diff --git a/index.css b/index.css new file mode 100644 index 0000000..eff2153 --- /dev/null +++ b/index.css @@ -0,0 +1,75 @@ +/* 已有的样式 */ +body { + background-color: #2b2b2b; + color: #fff; +} + +/* 新增样式 */ +.container { + display: flex; + flex-direction: column; + align-items: center; + padding: 30px; + max-width: 800px; + margin: auto; +} + +h1 { + font-size: 32px; + text-align: center; + margin-bottom: 20px; +} + +p { + line-height: 1.5; + margin-bottom: 15px; + max-width: 600px; + text-align: center; +} + +textarea { + width: 100%; + min-height: 200px; + padding: 15px; + margin-bottom: 20px; + border: 2px solid #4caf50; + border-radius: 5px; + resize: vertical; + font-size: 16px; + color: wheat; + background-color: transparent; +} + +button { + background-color: #4caf50; + border: none; + color: white; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; + margin: 4px 2px; + cursor: pointer; + border-radius: 5px; + transition: background-color 0.3s; +} + +button:hover { + background-color: #45a049; +} + +@media screen and (max-width: 600px) { + h1 { + font-size: 28px; + } + + textarea { + min-height: 150px; + } + + button { + padding: 10px 20px; + font-size: 14px; + } +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..4d04654 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ + + +
+ + ++ 请输入搜索的内容,将会打开多个搜索引擎进行搜索,可以输入多行,每行内容会作为一个搜索词进行搜索。 +
++ 可以先用LLM生成多种搜索词,然后再用本工具换行输入进行搜索,可以节省时间。 +
+注意!该搜索会超大批量弹窗,需要设置浏览器允许多个弹窗。
+ + +