316 lines
10 KiB
HTML
316 lines
10 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>挂机宝使用说明 - 泽枢云启</title>
|
||
<link rel="stylesheet" href="../css/style.css">
|
||
<style>
|
||
.progress-bar {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 0%;
|
||
height: 4px;
|
||
background: linear-gradient(90deg, #667eea, #764ba2);
|
||
z-index: 1000;
|
||
transition: width 0.3s ease;
|
||
}
|
||
|
||
.step-container {
|
||
max-width: 900px;
|
||
margin: 0 auto;
|
||
padding: 20px;
|
||
}
|
||
|
||
.step-section {
|
||
background: white;
|
||
border-radius: 20px;
|
||
padding: 40px;
|
||
margin-bottom: 40px;
|
||
box-shadow: 0 5px 20px rgba(0,0,0,0.1);
|
||
}
|
||
|
||
.step-header {
|
||
display: flex;
|
||
align-items: center;
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.step-number {
|
||
width: 60px;
|
||
height: 60px;
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
color: white;
|
||
font-size: 28px;
|
||
font-weight: bold;
|
||
margin-right: 20px;
|
||
}
|
||
|
||
.step-title {
|
||
font-size: 28px;
|
||
color: #2c3e50;
|
||
margin: 0;
|
||
}
|
||
|
||
.step-description {
|
||
font-size: 16px;
|
||
color: #555;
|
||
line-height: 1.8;
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.video-container {
|
||
margin-bottom: 30px;
|
||
}
|
||
|
||
.video-placeholder {
|
||
position: relative;
|
||
width: 100%;
|
||
height: 0;
|
||
padding-bottom: 56.25%;
|
||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||
border-radius: 12px;
|
||
overflow: hidden;
|
||
cursor: pointer;
|
||
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
}
|
||
|
||
.video-placeholder:hover {
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
|
||
}
|
||
|
||
.play-button {
|
||
position: absolute;
|
||
top: 50%;
|
||
left: 50%;
|
||
transform: translate(-50%, -50%);
|
||
width: 80px;
|
||
height: 80px;
|
||
background: rgba(255,255,255,0.9);
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
transition: transform 0.3s ease;
|
||
}
|
||
|
||
.play-button::after {
|
||
content: '';
|
||
width: 0;
|
||
height: 0;
|
||
border-left: 24px solid #667eea;
|
||
border-top: 14px solid transparent;
|
||
border-bottom: 14px solid transparent;
|
||
margin-left: 6px;
|
||
}
|
||
|
||
.video-title {
|
||
position: absolute;
|
||
bottom: 20px;
|
||
left: 20px;
|
||
right: 20px;
|
||
color: white;
|
||
font-size: 18px;
|
||
font-weight: bold;
|
||
text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
|
||
}
|
||
|
||
.key-points {
|
||
background: #f8f9fa;
|
||
border-radius: 12px;
|
||
padding: 25px;
|
||
margin-top: 25px;
|
||
}
|
||
|
||
.key-points h4 {
|
||
color: #2c3e50;
|
||
margin-top: 0;
|
||
margin-bottom: 15px;
|
||
font-size: 18px;
|
||
}
|
||
|
||
.key-points ul {
|
||
margin: 0;
|
||
padding-left: 20px;
|
||
}
|
||
|
||
.key-points li {
|
||
color: #555;
|
||
margin-bottom: 8px;
|
||
line-height: 1.6;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div class="progress-bar" id="progressFill"></div>
|
||
|
||
<header>
|
||
<div class="container">
|
||
<h1>🖥️ 挂机宝使用说明</h1>
|
||
<p>高性能挂机解决方案 - 一拖一 & 一拖三</p>
|
||
</div>
|
||
</header>
|
||
|
||
<div class="container">
|
||
<nav>
|
||
<ul>
|
||
<li><a href="../index.html">飞牛 NAS</a></li>
|
||
<li><a href="win-guide.html">Win 主机</a></li>
|
||
<li><a href="guajibao-guide.html">挂机宝</a></li>
|
||
<li><a href="longxiahezi-guide.html">龙虾盒子</a></li>
|
||
<li><a href="faq.html">常见问题</a></li>
|
||
<li><a href="support.html">技术支持</a></li>
|
||
</ul>
|
||
</nav>
|
||
|
||
<div class="step-container">
|
||
<div class="step-section" id="step1">
|
||
<div class="step-header">
|
||
<div class="step-number">1</div>
|
||
<h2 class="step-title">硬件连接与开机</h2>
|
||
</div>
|
||
|
||
<p class="step-description">
|
||
学习如何正确连接挂机宝的硬件设备,确保稳定运行。
|
||
</p>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step1')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">一拖一款硬件连接</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step1-2')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">一拖三款硬件连接</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="key-points">
|
||
<h4>📋 关键要点</h4>
|
||
<ul>
|
||
<li>确保电源适配器连接牢固</li>
|
||
<li>网线连接到稳定的网络环境</li>
|
||
<li>如需安装硬盘,请先断开电源</li>
|
||
<li>放置在通风良好的位置</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="step-section" id="step2">
|
||
<div class="step-header">
|
||
<div class="step-number">2</div>
|
||
<h2 class="step-title">系统配置</h2>
|
||
</div>
|
||
|
||
<p class="step-description">
|
||
完成系统初始配置,包括网络设置、远程访问配置等。
|
||
</p>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step2')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">网络配置与IP设置</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step2-2')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">远程桌面与TeamViewer配置</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="key-points">
|
||
<h4>📋 关键要点</h4>
|
||
<ul>
|
||
<li>建议使用固定IP地址</li>
|
||
<li>配置远程桌面便于管理</li>
|
||
<li>设置自动登录和开机启动</li>
|
||
<li>确保网络稳定性和带宽充足</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="step-section" id="step3">
|
||
<div class="step-header">
|
||
<div class="step-number">3</div>
|
||
<h2 class="step-title">挂机软件安装与配置</h2>
|
||
</div>
|
||
|
||
<p class="step-description">
|
||
安装挂机软件、配置自动运行,让挂机宝稳定工作。
|
||
</p>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step3')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">挂机软件安装</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step3-2')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">自动启动与任务配置</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="video-container">
|
||
<div class="video-placeholder" onclick="playVideo('step3-3')">
|
||
<div class="play-button"></div>
|
||
<div class="video-title">系统优化与稳定性设置</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="key-points">
|
||
<h4>📋 关键要点</h4>
|
||
<ul>
|
||
<li>从正规渠道下载挂机软件</li>
|
||
<li>配置任务计划程序实现自动运行</li>
|
||
<li>关闭不必要的系统服务节省资源</li>
|
||
<li>定期检查运行状态和日志</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<footer>
|
||
<div class="container">
|
||
<p>© 2026 泽枢云启 | 版权所有</p>
|
||
</div>
|
||
</footer>
|
||
|
||
<script>
|
||
window.addEventListener('scroll', function() {
|
||
const winScroll = document.body.scrollTop || document.documentElement.scrollTop;
|
||
const height = document.documentElement.scrollHeight - document.documentElement.clientHeight;
|
||
const scrolled = (winScroll / height) * 100;
|
||
document.getElementById('progressFill').style.width = scrolled + '%';
|
||
});
|
||
|
||
function playVideo(stepId) {
|
||
alert('视频播放功能即将上线!\n\n当前为演示版本,实际视频内容将在此处播放。');
|
||
}
|
||
|
||
document.querySelectorAll('.play-button').forEach(button => {
|
||
button.addEventListener('mouseenter', function() {
|
||
this.style.transform = 'scale(1.15)';
|
||
});
|
||
button.addEventListener('mouseleave', function() {
|
||
this.style.transform = 'scale(1)';
|
||
});
|
||
});
|
||
</script>
|
||
</body>
|
||
</html>
|