功能特点
- 桌面: 带有背景图片和图标的桌面。
- 任务栏: 位于屏幕底部,包含“开始”按钮、运行中程序的快捷方式、系统托盘(音量、网络图标)和时钟。
- 开始菜单: 点击“开始”按钮弹出,包含常用程序列表、电源选项和搜索框。
- 图标: 可以双击打开,右键点击显示上下文菜单(打开、重命名、删除)。
- 窗口系统: 可以打开多个“窗口”(如文件管理器、记事本),支持拖拽、最大化、最小化、关闭和调整大小。
- 文件管理器: 模拟了简单的文件浏览功能。
- 记事本: 一个可以输入和编辑文本的简单记事本。
- 右键菜单: 在桌面和图标上点击右键会弹出相应的菜单。
- 拖拽: 图标可以在桌面上拖动。
使用说明
- 复制代码: 将下面的完整代码复制到一个文本编辑器中(如 VS Code, Sublime Text, 或者记事本)。
- 保存文件: 将文件保存为
index.html。 - 打开浏览器: 用 Chrome, Firefox, Edge 或任何现代浏览器打开这个
index.html文件即可体验。
完整源代码
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">仿Windows桌面</title>
<style>
/* --- 全局和基础样式 --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
user-select: none; /* 防止用户选中文本 */
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
overflow: hidden; /* 隐藏滚动条 */
background-image: url('https://source.unsplash.com/random/1920x1080/?landscape') center/cover no-repeat;
height: 100vh;
position: relative;
}
/* --- 桌面 --- */
#desktop {
width: 100%;
height: calc(100vh - 40px); /* 减去任务栏高度 */
position: relative;
padding: 20px;
}
/* --- 图标 --- */
.desktop-icon {
position: absolute;
width: 80px;
text-align: center;
cursor: pointer;
transition: transform 0.1s;
}
.desktop-icon:hover {
transform: scale(1.1);
}
.desktop-icon.selected {
background-color: rgba(0, 120, 215, 0.3);
border-radius: 5px;
}
.desktop-icon img {
width: 48px;
height: 48px;
margin-bottom: 5px;
}
.desktop-icon .icon-label {
font-size: 12px;
color: white;
text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
white-space: nowrap;
}
/* --- 右键菜单 --- */
.context-menu {
position: fixed;
background-color: #fff;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
padding: 5px 0;
z-index: 1000;
display: none;
}
.context-menu-item {
padding: 8px 20px;
cursor: pointer;
font-size: 14px;
}
.context-menu-item:hover {
background-color: #f0f0f0;
}
/* --- 任务栏 --- */
#taskbar {
position: fixed;
bottom: 0;
width: 100%;
height: 40px;
background-color: rgba(0, 0, 0, 0.8);
display: flex;
align-items: center;
padding: 0 10px;
z-index: 100;
}
#start-button {
width: 40px;
height: 32px;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 32"><rect width="40" height="32" fill="%230078D7"/><path d="M8 8h8v16H8zm12 0h8v16h-8z" fill="%23fff"/></svg>');
background-repeat: no-repeat;
background-position: center;
cursor: pointer;
margin-right: 10px;
}
#taskbar-apps {
display: flex;
flex-grow: 1;
}
.taskbar-app {
height: 32px;
background-color: rgba(255, 255, 255, 0.2);
margin-right: 5px;
padding: 0 10px;
display: flex;
align-items: center;
color: white;
font-size: 12px;
border-radius: 3px 3px 0 0;
cursor: pointer;
}
.taskbar-app.active {
background-color: rgba(255, 255, 255, 0.4);
}
#system-tray {
display: flex;
align-items: center;
color: white;
font-size: 14px;
margin-left: auto;
gap: 10px;
}
#clock {
font-family: monospace;
}
/* --- 开始菜单 --- */
#start-menu {
position: fixed;
bottom: 40px;
left: 0;
width: 500px;
height: 500px;
background-color: rgba(0, 0, 0, 0.95);
border: 1px solid #ccc;
border-radius: 5px;
display: none;
z-index: 99;
color: white;
padding: 10px;
}
.start-menu-section {
margin-bottom: 20px;
}
.start-menu-section h3 {
font-size: 12px;
margin-bottom: 10px;
color: #aaa;
text-transform: uppercase;
}
.start-menu-item {
display: flex;
align-items: center;
padding: 8px;
border-radius: 3px;
cursor: pointer;
}
.start-menu-item:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.start-menu-item img {
width: 24px;
height: 24px;
margin-right: 10px;
}
.power-options {
display: flex;
justify-content: space-around;
margin-top: 20px;
padding-top: 20px;
border-top: 1px solid #333;
}
.power-option {
text-align: center;
cursor: pointer;
font-size: 12px;
}
/* --- 窗口 --- */
.window {
position: absolute;
width: 600px;
height: 400px;
background-color: white;
border: 1px solid #999;
border-radius: 5px;
box-shadow: 0 0 15px rgba(0,0,0,0.5);
display: none;
z-index: 50;
}
.window.active {
z-index: 51;
}
.window-header {
height: 30px;
background-color: #f0f0f0;
border-bottom: 1px solid #ccc;
display: flex;
align-items: center;
padding: 0 10px;
cursor: move;
}
.window-title {
flex-grow: 1;
font-size: 14px;
}
.window-controls {
display: flex;
gap: 5px;
}
.window-control {
width: 16px;
height: 16px;
border-radius: 50%;
cursor: pointer;
}
.window-control.minimize { background-color: #ffbd2e; }
.window-control.maximize { background-color: #27c93f; }
.window-control.close { background-color: #ff5f56; }
.window-content {
height: calc(100% - 30px);
padding: 10px;
overflow: auto;
}
/* --- 记事本样式 --- */
#notepad-content {
width
(图片来源网络,侵删)
