新增表格排版
This commit is contained in:
parent
e58195147f
commit
b69243e51a
@ -257,6 +257,67 @@ body.dark-mode .view-toggle:hover {
|
|||||||
transform: translateX(-50%) translateY(0);
|
transform: translateX(-50%) translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 视图切换下拉菜单 */
|
||||||
|
.view-menu {
|
||||||
|
position: absolute;
|
||||||
|
top: 70px;
|
||||||
|
right: 15px;
|
||||||
|
background: white;
|
||||||
|
border: 1px solid #e2e8f0;
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||||
|
padding: 8px 0;
|
||||||
|
min-width: 150px;
|
||||||
|
z-index: 101;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .view-menu {
|
||||||
|
background: #2d3748;
|
||||||
|
border-color: #4a5568;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu.show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px 16px;
|
||||||
|
color: #2d3748;
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0.9em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .view-menu-item {
|
||||||
|
color: #e2e8f0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item:hover {
|
||||||
|
background-color: #f7fafc;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode .view-menu-item:hover {
|
||||||
|
background-color: #4a5568;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item.active {
|
||||||
|
background-color: #4299e1;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-icon {
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
.theme-tooltip {
|
.theme-tooltip {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: -35px;
|
bottom: -35px;
|
||||||
|
|||||||
@ -84,10 +84,24 @@ try {
|
|||||||
<span class="theme-icon">🌙</span>
|
<span class="theme-icon">🌙</span>
|
||||||
<span class="theme-tooltip">切换主题</span>
|
<span class="theme-tooltip">切换主题</span>
|
||||||
</button>
|
</button>
|
||||||
<button id="view-toggle" class="view-toggle" title="切换到紧凑视图" onclick="window.location.href='index.php'">
|
<button id="view-toggle" class="view-toggle" title="切换视图">
|
||||||
<span class="view-icon">📋</span>
|
<span class="view-icon">📑</span>
|
||||||
<span class="view-tooltip">紧凑视图</span>
|
<span class="view-tooltip">切换视图</span>
|
||||||
</button>
|
</button>
|
||||||
|
<div id="view-menu" class="view-menu">
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='index.php'">
|
||||||
|
<span class="view-menu-icon">📋</span>
|
||||||
|
<span>简洁视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item active">
|
||||||
|
<span class="view-menu-icon">📄</span>
|
||||||
|
<span>标准视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='table.php'">
|
||||||
|
<span class="view-menu-icon">📊</span>
|
||||||
|
<span>表格视图</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<?php foreach ($sections as $key => $config): ?>
|
<?php foreach ($sections as $key => $config): ?>
|
||||||
@ -342,6 +356,32 @@ try {
|
|||||||
}, 3000);
|
}, 3000);
|
||||||
}
|
}
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
// 视图切换下拉菜单
|
||||||
|
(function() {
|
||||||
|
const viewToggle = document.getElementById('view-toggle');
|
||||||
|
const viewMenu = document.getElementById('view-menu');
|
||||||
|
|
||||||
|
// 点击按钮显示/隐藏菜单
|
||||||
|
viewToggle.addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
viewMenu.classList.toggle('show');
|
||||||
|
});
|
||||||
|
|
||||||
|
// 点击其他地方关闭菜单
|
||||||
|
document.addEventListener('click', function(e) {
|
||||||
|
if (!viewToggle.contains(e.target) && !viewMenu.contains(e.target)) {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ESC 键关闭菜单
|
||||||
|
document.addEventListener('keydown', function(e) {
|
||||||
|
if (e.key === 'Escape') {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
95
index.php
95
index.php
@ -232,6 +232,54 @@ try {
|
|||||||
visibility: visible;
|
visibility: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 视图切换下拉菜单 */
|
||||||
|
.view-menu {
|
||||||
|
position: fixed;
|
||||||
|
top: 60px;
|
||||||
|
right: 15px;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||||
|
padding: 8px 0;
|
||||||
|
min-width: 150px;
|
||||||
|
z-index: 101;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu.show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px 16px;
|
||||||
|
color: var(--text-primary);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0.9em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item:hover {
|
||||||
|
background-color: var(--hover-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item.active {
|
||||||
|
background-color: var(--accent-color);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-icon {
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
/* 栏目区域 */
|
/* 栏目区域 */
|
||||||
.section {
|
.section {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
@ -523,10 +571,23 @@ try {
|
|||||||
<button id="theme-toggle" class="theme-toggle" title="点击切换白天/黑夜模式">
|
<button id="theme-toggle" class="theme-toggle" title="点击切换白天/黑夜模式">
|
||||||
<span class="theme-icon">🌙</span>
|
<span class="theme-icon">🌙</span>
|
||||||
</button>
|
</button>
|
||||||
<button id="view-toggle" class="view-toggle" title="切换到标准视图" onclick="window.location.href='simple.php'">
|
<button id="view-toggle" class="view-toggle" title="切换视图">
|
||||||
<span class="view-icon">📄</span>
|
<span class="view-icon">📑</span>
|
||||||
<span class="view-tooltip">标准视图</span>
|
|
||||||
</button>
|
</button>
|
||||||
|
<div id="view-menu" class="view-menu">
|
||||||
|
<button class="view-menu-item active">
|
||||||
|
<span class="view-menu-icon">📋</span>
|
||||||
|
<span>简洁视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='full.php'">
|
||||||
|
<span class="view-menu-icon">📄</span>
|
||||||
|
<span>标准视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='table.php'">
|
||||||
|
<span class="view-menu-icon">📊</span>
|
||||||
|
<span>表格视图</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<?php foreach ($sections as $key => $config): ?>
|
<?php foreach ($sections as $key => $config): ?>
|
||||||
@ -714,7 +775,7 @@ try {
|
|||||||
const themeIcon = themeToggle.querySelector('.theme-icon');
|
const themeIcon = themeToggle.querySelector('.theme-icon');
|
||||||
const body = document.body;
|
const body = document.body;
|
||||||
|
|
||||||
// 从localStorage读取主题设置
|
// 从 localStorage 读取主题设置
|
||||||
const currentTheme = localStorage.getItem('theme') || 'light';
|
const currentTheme = localStorage.getItem('theme') || 'light';
|
||||||
|
|
||||||
// 应用保存的主题
|
// 应用保存的主题
|
||||||
@ -736,6 +797,32 @@ try {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
|
|
||||||
|
// 视图切换下拉菜单
|
||||||
|
(function() {
|
||||||
|
const viewToggle = document.getElementById('view-toggle');
|
||||||
|
const viewMenu = document.getElementById('view-menu');
|
||||||
|
|
||||||
|
// 点击按钮显示/隐藏菜单
|
||||||
|
viewToggle.addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
viewMenu.classList.toggle('show');
|
||||||
|
});
|
||||||
|
|
||||||
|
// 点击其他地方关闭菜单
|
||||||
|
document.addEventListener('click', function(e) {
|
||||||
|
if (!viewToggle.contains(e.target) && !viewMenu.contains(e.target)) {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ESC 键关闭菜单
|
||||||
|
document.addEventListener('keydown', function(e) {
|
||||||
|
if (e.key === 'Escape') {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
820
table.php
Normal file
820
table.php
Normal file
@ -0,0 +1,820 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* SecHub - 网络安全工具导航页(表格视图)
|
||||||
|
*/
|
||||||
|
|
||||||
|
// 定义路径
|
||||||
|
$jsonDir = __DIR__ . '/assets/json/';
|
||||||
|
$dbDir = __DIR__ . '/assets/db/';
|
||||||
|
$dbPath = $dbDir . 'sechub.db';
|
||||||
|
|
||||||
|
// 确保数据库目录存在
|
||||||
|
if (!is_dir($dbDir)) {
|
||||||
|
mkdir($dbDir, 0755, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 引入数据库类
|
||||||
|
require_once __DIR__ . '/db.php';
|
||||||
|
|
||||||
|
// 初始化数据库并同步数据
|
||||||
|
try {
|
||||||
|
$database = new SecHubDatabase($dbPath, $jsonDir);
|
||||||
|
|
||||||
|
if (!file_exists($dbPath)) {
|
||||||
|
error_log("数据库文件不存在,将在同步时创建");
|
||||||
|
}
|
||||||
|
|
||||||
|
$database->syncJsonToDatabase();
|
||||||
|
|
||||||
|
// 获取栏目配置
|
||||||
|
$sections = $database->getSectionsConfig();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
error_log("数据库初始化失败: " . $e->getMessage());
|
||||||
|
$sections = [];
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="zh-CN">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<link rel="shortcut icon" href="./assets/imgs/favicon.ico" type="image/x-icon">
|
||||||
|
<title>SecHub(表格版)</title>
|
||||||
|
<style>
|
||||||
|
* {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--bg-primary: #f5f7fa;
|
||||||
|
--bg-secondary: #ffffff;
|
||||||
|
--text-primary: #2c3e50;
|
||||||
|
--text-secondary: #7f8c8d;
|
||||||
|
--border-color: #e0e6ed;
|
||||||
|
--accent-color: #3498db;
|
||||||
|
--hover-bg: #f0f4f8;
|
||||||
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
|
||||||
|
}
|
||||||
|
|
||||||
|
body.dark-mode {
|
||||||
|
--bg-primary: #1a1a1a;
|
||||||
|
--bg-secondary: #2d2d2d;
|
||||||
|
--text-primary: #e0e0e0;
|
||||||
|
--text-secondary: #999999;
|
||||||
|
--border-color: #404040;
|
||||||
|
--accent-color: #4a9eff;
|
||||||
|
--hover-bg: #3a3a3a;
|
||||||
|
--shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
line-height: 1.4;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.8em;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
header p {
|
||||||
|
font-size: 0.9em;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 全局搜索框 */
|
||||||
|
.search-container {
|
||||||
|
position: relative;
|
||||||
|
max-width: 600px;
|
||||||
|
margin: 0 auto 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-input {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 15px;
|
||||||
|
border: 2px solid var(--border-color);
|
||||||
|
border-radius: 6px;
|
||||||
|
font-size: 0.95em;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-input:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--accent-color);
|
||||||
|
box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-results {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
top: 100%;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 6px;
|
||||||
|
box-shadow: var(--shadow);
|
||||||
|
max-height: 500px;
|
||||||
|
overflow-y: auto;
|
||||||
|
z-index: 1000;
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result-section {
|
||||||
|
padding: 10px;
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.search-result-title {
|
||||||
|
font-size: 0.9em;
|
||||||
|
color: var(--accent-color);
|
||||||
|
margin-bottom: 8px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
.no-results {
|
||||||
|
padding: 20px;
|
||||||
|
text-align: center;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 主题切换按钮 */
|
||||||
|
.theme-toggle {
|
||||||
|
position: fixed;
|
||||||
|
top: 15px;
|
||||||
|
right: 65px;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 1.2em;
|
||||||
|
box-shadow: var(--shadow);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-toggle:hover {
|
||||||
|
transform: scale(1.1);
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 视图切换按钮 */
|
||||||
|
.view-toggle {
|
||||||
|
position: fixed;
|
||||||
|
top: 15px;
|
||||||
|
right: 15px;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 50%;
|
||||||
|
width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
cursor: pointer;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
font-size: 1.2em;
|
||||||
|
box-shadow: var(--shadow);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
z-index: 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-toggle:hover {
|
||||||
|
transform: scale(1.1);
|
||||||
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 视图切换下拉菜单 */
|
||||||
|
.view-menu {
|
||||||
|
position: fixed;
|
||||||
|
top: 60px;
|
||||||
|
right: 15px;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 8px;
|
||||||
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
|
||||||
|
padding: 8px 0;
|
||||||
|
min-width: 150px;
|
||||||
|
z-index: 101;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu.show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding: 10px 16px;
|
||||||
|
color: var(--text-primary);
|
||||||
|
text-decoration: none;
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
border: none;
|
||||||
|
background: none;
|
||||||
|
width: 100%;
|
||||||
|
font-size: 0.9em;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item:hover {
|
||||||
|
background-color: var(--hover-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-item.active {
|
||||||
|
background-color: var(--accent-color);
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-menu-icon {
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 1.1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 栏目区域 */
|
||||||
|
.section {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
background-color: var(--bg-secondary);
|
||||||
|
border-radius: 8px;
|
||||||
|
padding: 12px;
|
||||||
|
box-shadow: var(--shadow);
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
margin-bottom: 12px;
|
||||||
|
padding-bottom: 8px;
|
||||||
|
border-bottom: 2px solid var(--accent-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-title {
|
||||||
|
font-size: 1.1em;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-search {
|
||||||
|
width: 200px;
|
||||||
|
padding: 6px 10px;
|
||||||
|
border: 1px solid var(--border-color);
|
||||||
|
border-radius: 4px;
|
||||||
|
font-size: 0.85em;
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
color: var(--text-primary);
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-search:focus {
|
||||||
|
outline: none;
|
||||||
|
border-color: var(--accent-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 表格容器 - 支持横向滚动 */
|
||||||
|
.table-container {
|
||||||
|
overflow-x: auto;
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 高密度表格 */
|
||||||
|
.tool-table {
|
||||||
|
width: 100%;
|
||||||
|
border-collapse: collapse;
|
||||||
|
font-size: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table thead {
|
||||||
|
background-color: var(--bg-primary);
|
||||||
|
position: sticky;
|
||||||
|
top: 0;
|
||||||
|
z-index: 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table th {
|
||||||
|
padding: 8px 12px;
|
||||||
|
text-align: left;
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
border-bottom: 2px solid var(--border-color);
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table tbody tr {
|
||||||
|
border-bottom: 1px solid var(--border-color);
|
||||||
|
transition: background-color 0.2s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table tbody tr:hover {
|
||||||
|
background-color: var(--hover-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table td {
|
||||||
|
padding: 6px 12px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 工具名称列 */
|
||||||
|
.col-name {
|
||||||
|
font-weight: 600;
|
||||||
|
color: var(--text-primary);
|
||||||
|
min-width: 120px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 工具链接列 */
|
||||||
|
.col-url {
|
||||||
|
min-width: 200px;
|
||||||
|
max-width: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-url a {
|
||||||
|
color: var(--accent-color);
|
||||||
|
text-decoration: none;
|
||||||
|
display: inline-block;
|
||||||
|
max-width: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
white-space: nowrap;
|
||||||
|
direction: rtl;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.col-url a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 工具描述列 - 可横向滚动 */
|
||||||
|
.col-description {
|
||||||
|
min-width: 300px;
|
||||||
|
max-width: 600px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description-cell {
|
||||||
|
overflow-x: auto;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
scrollbar-width: thin;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description-cell::-webkit-scrollbar {
|
||||||
|
height: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description-cell::-webkit-scrollbar-track {
|
||||||
|
background: var(--bg-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.description-cell::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--border-color);
|
||||||
|
border-radius: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 空状态 */
|
||||||
|
.empty-state {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px;
|
||||||
|
color: var(--text-secondary);
|
||||||
|
font-size: 0.9em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 页脚 */
|
||||||
|
.panel-footer {
|
||||||
|
text-align: center;
|
||||||
|
padding: 20px 0;
|
||||||
|
margin-top: 30px;
|
||||||
|
border-top: 1px solid var(--border-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-content {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
font-size: 0.85em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-content a {
|
||||||
|
color: var(--accent-color);
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.footer-content a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.beian-info {
|
||||||
|
margin-top: 8px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.beian-link {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
text-decoration: none;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.beian-link:hover {
|
||||||
|
color: var(--accent-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.beian-divider {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.beian-icon {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 响应式设计 */
|
||||||
|
@media (max-width: 768px) {
|
||||||
|
.container {
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-header {
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: stretch;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-search {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.theme-toggle {
|
||||||
|
top: 10px;
|
||||||
|
right: 60px;
|
||||||
|
width: 35px;
|
||||||
|
height: 35px;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.view-toggle {
|
||||||
|
top: 10px;
|
||||||
|
right: 10px;
|
||||||
|
width: 35px;
|
||||||
|
height: 35px;
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table {
|
||||||
|
font-size: 0.8em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tool-table th,
|
||||||
|
.tool-table td {
|
||||||
|
padding: 5px 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* 滚动条样式 */
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 8px;
|
||||||
|
height: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-track {
|
||||||
|
background: var(--bg-primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb {
|
||||||
|
background: var(--border-color);
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
::-webkit-scrollbar-thumb:hover {
|
||||||
|
background: var(--text-secondary);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<header>
|
||||||
|
<h1>SecHub 网安工具集(表格版)</h1>
|
||||||
|
<p>超高密度浏览模式 | 一行一条目</p>
|
||||||
|
|
||||||
|
<!-- 全局搜索框 -->
|
||||||
|
<div class="search-container">
|
||||||
|
<input type="text"
|
||||||
|
id="global-search"
|
||||||
|
class="search-input"
|
||||||
|
placeholder="🔍 搜索工具名称、描述或链接..."
|
||||||
|
autocomplete="off">
|
||||||
|
<div id="search-results" class="search-results"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<button id="theme-toggle" class="theme-toggle" title="点击切换白天/黑夜模式">
|
||||||
|
<span class="theme-icon">🌙</span>
|
||||||
|
</button>
|
||||||
|
<button id="view-toggle" class="view-toggle" title="切换视图">
|
||||||
|
<span class="view-icon">📑</span>
|
||||||
|
</button>
|
||||||
|
<div id="view-menu" class="view-menu">
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='index.php'">
|
||||||
|
<span class="view-menu-icon">📋</span>
|
||||||
|
<span>简洁视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item" onclick="window.location.href='full.php'">
|
||||||
|
<span class="view-menu-icon">📄</span>
|
||||||
|
<span>标准视图</span>
|
||||||
|
</button>
|
||||||
|
<button class="view-menu-item active">
|
||||||
|
<span class="view-menu-icon">📊</span>
|
||||||
|
<span>表格视图</span>
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<?php foreach ($sections as $key => $config): ?>
|
||||||
|
<?php
|
||||||
|
$items = $database->getItemsBySection($key);
|
||||||
|
?>
|
||||||
|
|
||||||
|
<section class="section" data-section="<?= htmlspecialchars($key) ?>">
|
||||||
|
<div class="section-header">
|
||||||
|
<h2 class="section-title">
|
||||||
|
<?= htmlspecialchars($config['title']) ?>
|
||||||
|
</h2>
|
||||||
|
<!-- 单项搜索框 -->
|
||||||
|
<input type="text"
|
||||||
|
class="section-search"
|
||||||
|
data-section="<?= htmlspecialchars($key) ?>"
|
||||||
|
placeholder="🔍 在此栏目中搜索..."
|
||||||
|
autocomplete="off">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<?php if (empty($items)): ?>
|
||||||
|
<div class="empty-state">
|
||||||
|
<p>暂无数据</p>
|
||||||
|
</div>
|
||||||
|
<?php else: ?>
|
||||||
|
<div class="table-container">
|
||||||
|
<table class="tool-table" data-section-items="<?= htmlspecialchars($key) ?>">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th style="width: 15%;">工具名称</th>
|
||||||
|
<th style="width: 25%;">工具链接</th>
|
||||||
|
<th style="width: 60%;">工具描述</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<?php foreach ($items as $item): ?>
|
||||||
|
<tr>
|
||||||
|
<td class="col-name"><?= htmlspecialchars($item['name'] ?? '未命名') ?></td>
|
||||||
|
<td class="col-url">
|
||||||
|
<a href="<?= htmlspecialchars($item['url'] ?? '#') ?>" target="_blank">
|
||||||
|
<?= htmlspecialchars($item['url'] ?? '') ?>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td class="col-description">
|
||||||
|
<div class="description-cell">
|
||||||
|
<?= htmlspecialchars($item['description'] ?? '暂无简介') ?>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<?php endif; ?>
|
||||||
|
</section>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
|
||||||
|
<footer class="panel-footer">
|
||||||
|
<div class="footer-content">
|
||||||
|
<p class="copyright">© <?= date('Y') ?> <a href="https://git.masonliu.com/MasonLiu/SecHub" target="_blank" rel="noopener noreferrer">SecHub - 网络安全工具集</a></p>
|
||||||
|
<p class="copyright">Gaming Master Cybersecurity | MasonLiu</p>
|
||||||
|
<div class="beian-info">
|
||||||
|
<a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener noreferrer" class="beian-link">蜀ICP备2026025173号</a>
|
||||||
|
<span class="beian-divider">|</span>
|
||||||
|
<a href="https://beian.mps.gov.cn/#/query/webSearch?code=51162302000285" target="_blank" rel="noopener noreferrer" class="beian-link">
|
||||||
|
<img src="/assets/imgs/beian.png" alt="公安备案" width="16" height="16" class="beian-icon"/>
|
||||||
|
<span>川公网安备51162302000285号</span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// HTML转义函数
|
||||||
|
function escapeHtml(text) {
|
||||||
|
const div = document.createElement('div');
|
||||||
|
div.textContent = text;
|
||||||
|
return div.innerHTML;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 全局搜索功能
|
||||||
|
const globalSearchInput = document.getElementById('global-search');
|
||||||
|
const searchResults = document.getElementById('search-results');
|
||||||
|
let searchTimeout;
|
||||||
|
|
||||||
|
globalSearchInput.addEventListener('input', function() {
|
||||||
|
clearTimeout(searchTimeout);
|
||||||
|
const keyword = this.value.trim();
|
||||||
|
|
||||||
|
if (keyword.length === 0) {
|
||||||
|
searchResults.style.display = 'none';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
searchTimeout = setTimeout(() => {
|
||||||
|
performGlobalSearch(keyword);
|
||||||
|
}, 300);
|
||||||
|
});
|
||||||
|
|
||||||
|
function performGlobalSearch(keyword) {
|
||||||
|
fetch(`search.php?action=global&keyword=${encodeURIComponent(keyword)}`)
|
||||||
|
.then(response => response.json())
|
||||||
|
.then(data => {
|
||||||
|
displaySearchResults(data);
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
console.error('搜索失败:', error);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
function displaySearchResults(results) {
|
||||||
|
searchResults.innerHTML = '';
|
||||||
|
|
||||||
|
if (Object.keys(results).length === 0) {
|
||||||
|
searchResults.innerHTML = '<div class="no-results">未找到相关结果</div>';
|
||||||
|
searchResults.style.display = 'block';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Object.keys(results).forEach(tableName => {
|
||||||
|
const section = results[tableName];
|
||||||
|
const sectionDiv = document.createElement('div');
|
||||||
|
sectionDiv.className = 'search-result-section';
|
||||||
|
|
||||||
|
const title = document.createElement('h3');
|
||||||
|
title.className = 'search-result-title';
|
||||||
|
title.textContent = section.section;
|
||||||
|
sectionDiv.appendChild(title);
|
||||||
|
|
||||||
|
const tableContainer = document.createElement('div');
|
||||||
|
tableContainer.className = 'table-container';
|
||||||
|
|
||||||
|
const table = document.createElement('table');
|
||||||
|
table.className = 'tool-table';
|
||||||
|
|
||||||
|
const thead = document.createElement('thead');
|
||||||
|
thead.innerHTML = `
|
||||||
|
<tr>
|
||||||
|
<th style="width: 15%;">工具名称</th>
|
||||||
|
<th style="width: 25%;">工具链接</th>
|
||||||
|
<th style="width: 60%;">工具描述</th>
|
||||||
|
</tr>
|
||||||
|
`;
|
||||||
|
table.appendChild(thead);
|
||||||
|
|
||||||
|
const tbody = document.createElement('tbody');
|
||||||
|
section.items.forEach(item => {
|
||||||
|
const row = document.createElement('tr');
|
||||||
|
row.innerHTML = `
|
||||||
|
<td class="col-name">${escapeHtml(item.name || '未命名')}</td>
|
||||||
|
<td class="col-url"><a href="${item.url || '#'}" target="_blank">${escapeHtml(item.url || '')}</a></td>
|
||||||
|
<td class="col-description"><div class="description-cell">${escapeHtml(item.description || '暂无简介')}</div></td>
|
||||||
|
`;
|
||||||
|
tbody.appendChild(row);
|
||||||
|
});
|
||||||
|
table.appendChild(tbody);
|
||||||
|
|
||||||
|
tableContainer.appendChild(table);
|
||||||
|
sectionDiv.appendChild(tableContainer);
|
||||||
|
searchResults.appendChild(sectionDiv);
|
||||||
|
});
|
||||||
|
|
||||||
|
searchResults.style.display = 'block';
|
||||||
|
}
|
||||||
|
|
||||||
|
// 单项搜索功能
|
||||||
|
document.querySelectorAll('.section-search').forEach(input => {
|
||||||
|
input.addEventListener('input', function() {
|
||||||
|
const section = this.dataset.section;
|
||||||
|
const keyword = this.value.trim().toLowerCase();
|
||||||
|
const table = document.querySelector(`[data-section-items="${section}"]`);
|
||||||
|
|
||||||
|
if (!table) return;
|
||||||
|
|
||||||
|
const rows = table.querySelectorAll('tbody tr');
|
||||||
|
|
||||||
|
rows.forEach(row => {
|
||||||
|
const name = row.querySelector('.col-name').textContent.toLowerCase();
|
||||||
|
const url = row.querySelector('.col-url').textContent.toLowerCase();
|
||||||
|
const description = row.querySelector('.description-cell').textContent.toLowerCase();
|
||||||
|
|
||||||
|
if (keyword === '' ||
|
||||||
|
name.includes(keyword) ||
|
||||||
|
url.includes(keyword) ||
|
||||||
|
description.includes(keyword)) {
|
||||||
|
row.style.display = '';
|
||||||
|
} else {
|
||||||
|
row.style.display = 'none';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
// 点击其他地方关闭搜索结果
|
||||||
|
document.addEventListener('click', function(e) {
|
||||||
|
if (!e.target.closest('.search-container')) {
|
||||||
|
searchResults.style.display = 'none';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 黑夜模式切换功能
|
||||||
|
(function() {
|
||||||
|
const themeToggle = document.getElementById('theme-toggle');
|
||||||
|
const themeIcon = themeToggle.querySelector('.theme-icon');
|
||||||
|
const body = document.body;
|
||||||
|
|
||||||
|
// 从 localStorage 读取主题设置
|
||||||
|
const currentTheme = localStorage.getItem('theme') || 'light';
|
||||||
|
|
||||||
|
// 应用保存的主题
|
||||||
|
if (currentTheme === 'dark') {
|
||||||
|
body.classList.add('dark-mode');
|
||||||
|
themeIcon.textContent = '☀️';
|
||||||
|
}
|
||||||
|
|
||||||
|
// 切换主题
|
||||||
|
themeToggle.addEventListener('click', function() {
|
||||||
|
body.classList.toggle('dark-mode');
|
||||||
|
|
||||||
|
if (body.classList.contains('dark-mode')) {
|
||||||
|
themeIcon.textContent = '☀️';
|
||||||
|
localStorage.setItem('theme', 'dark');
|
||||||
|
} else {
|
||||||
|
themeIcon.textContent = '🌙';
|
||||||
|
localStorage.setItem('theme', 'light');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
|
||||||
|
// 视图切换下拉菜单
|
||||||
|
(function() {
|
||||||
|
const viewToggle = document.getElementById('view-toggle');
|
||||||
|
const viewMenu = document.getElementById('view-menu');
|
||||||
|
|
||||||
|
// 点击按钮显示/隐藏菜单
|
||||||
|
viewToggle.addEventListener('click', function(e) {
|
||||||
|
e.stopPropagation();
|
||||||
|
viewMenu.classList.toggle('show');
|
||||||
|
});
|
||||||
|
|
||||||
|
// 点击其他地方关闭菜单
|
||||||
|
document.addEventListener('click', function(e) {
|
||||||
|
if (!viewToggle.contains(e.target) && !viewMenu.contains(e.target)) {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// ESC 键关闭菜单
|
||||||
|
document.addEventListener('keydown', function(e) {
|
||||||
|
if (e.key === 'Escape') {
|
||||||
|
viewMenu.classList.remove('show');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
})();
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Loading…
Reference in New Issue
Block a user