diff --git a/color_pick.html b/color_pick.html
index 4639a7f..99c2699 100644
--- a/color_pick.html
+++ b/color_pick.html
@@ -6,55 +6,92 @@
颜色选择器
@@ -415,7 +508,6 @@
所有工具都经过精心设计,界面简洁美观,功能强大实用。支持在线使用,无需下载安装。
- 💻 纯前端
🎨 界面美观
⚡ 快速响应
📱 响应式设计
@@ -432,6 +524,22 @@
点击左侧的工具名称即可在右侧区域打开对应工具。所有数据都在本地处理,不会上传到服务器,保护您的隐私安全。
+
+
@@ -522,7 +630,6 @@
📋 工具特色
所有工具都经过精心设计,界面简洁美观,功能强大实用。支持在线使用,无需下载安装。
+
+
`;
} else if (tool.url) {
@@ -543,31 +655,6 @@
`;
}
}
-
- // 键盘快捷键支持
- document.addEventListener("keydown", function (e) {
- // Ctrl/Cmd + 数字键快速切换工具
- if (e.ctrlKey || e.metaKey) {
- const key = parseInt(e.key);
- if (key >= 1 && key <= 6) {
- const toolNames = [
- "welcome",
- "calculator",
- "number",
- "color",
- "json",
- "other",
- ];
- const toolName = toolNames[key - 1];
- const toolItem = document.querySelector(
- `[data-tool="${toolName}"]`,
- );
- if (toolItem) {
- toolItem.click();
- }
- }
- }
- });