新增简易的8080面板😊

This commit is contained in:
Falck
2026-04-17 23:15:15 +08:00
parent c38d2f66d1
commit 9d19d09821
465 changed files with 9235 additions and 35285 deletions

View File

@@ -0,0 +1,145 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: #f5f5f5;
color: #333;
overflow: hidden;
}
.app {
display: flex;
height: 100vh;
}
/* Dock 侧边栏 */
.sidebar {
width: 64px;
min-width: 64px;
background: #1a1a2e;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 16px 0;
overflow: hidden;
}
.sidebar-nav {
display: flex;
flex-direction: column;
gap: 8px;
padding: 0 12px;
}
.nav-item {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin: 0 auto;
color: rgba(255, 255, 255, 0.7);
text-decoration: none;
border-radius: 10px;
transition: all 0.2s ease;
position: relative;
}
.nav-item i {
font-size: 22px;
}
.nav-item:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
.nav-item.active {
background: rgba(74, 144, 217, 0.2);
color: #4a90d9;
}
.nav-item.active::before {
content: '';
position: absolute;
left: -12px;
top: 50%;
transform: translateY(-50%);
width: 3px;
height: 20px;
background: #4a90d9;
border-radius: 0 2px 2px 0;
}
/* Tooltip on hover */
.nav-item:hover::after {
content: attr(title);
position: absolute;
left: 52px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
padding: 6px 12px;
border-radius: 6px;
font-size: 13px;
white-space: nowrap;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s;
z-index: 100;
}
.nav-item:hover:hover::after {
opacity: 1;
}
.sidebar-footer {
padding: 0 12px;
}
.settings-btn {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
margin: 0 auto;
background: rgba(255, 255, 255, 0.05);
border: none;
color: rgba(255, 255, 255, 0.7);
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
}
.settings-btn i {
font-size: 22px;
}
.settings-btn:hover {
background: rgba(255, 255, 255, 0.1);
color: #fff;
}
/* 内容区 */
.content {
flex: 1;
overflow-y: auto;
height: 100vh;
}
.content-body {
min-height: 100%;
}
.empty-state {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: #999;
font-size: 15px;
}

View File

@@ -0,0 +1,36 @@
/**
* FutureOSS WebUI 主脚本
* 提供基础框架功能
*/
window.WebUI = {
/**
* 打开设置面板
* 其他插件可以扩展此功能
*/
openSettings: function() {
console.log('[WebUI] 打开设置面板');
// 设置面板逻辑 - 其他插件可以扩展
alert('设置功能需要其他插件支持');
},
/**
* 注册导航项
* 其他插件可以调用此方法添加导航
*/
registerNavItem: function(item) {
console.log('[WebUI] 注册导航项:', item);
// 实际实现需要与后端通信
},
/**
* 加载内容到主内容区
* 其他插件可以调用此方法加载内容
*/
loadContent: function(url) {
console.log('[WebUI] 加载内容:', url);
// 实际实现需要 AJAX 请求
}
};
console.log('FutureOSS WebUI 框架已加载');