0328
This commit is contained in:
332
使用说明/pages/usage-guide.html
Normal file
332
使用说明/pages/usage-guide.html
Normal file
@@ -0,0 +1,332 @@
|
||||
<!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>
|
||||
.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;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.step-title {
|
||||
font-size: 28px;
|
||||
color: #333;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.step-description {
|
||||
font-size: 16px;
|
||||
color: #666;
|
||||
margin-bottom: 25px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.video-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
background: #000;
|
||||
border-radius: 15px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
|
||||
}
|
||||
|
||||
.video-placeholder {
|
||||
width: 100%;
|
||||
aspect-ratio: 16/9;
|
||||
background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.play-button {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background: rgba(255,255,255,0.2);
|
||||
border-radius: 50%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-bottom: 20px;
|
||||
cursor: pointer;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.play-button:hover {
|
||||
background: rgba(255,255,255,0.3);
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.play-button::after {
|
||||
content: "▶";
|
||||
font-size: 32px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.video-title {
|
||||
font-size: 18px;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.video-duration {
|
||||
font-size: 14px;
|
||||
opacity: 0.7;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.key-points {
|
||||
background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
margin-top: 25px;
|
||||
border-left: 4px solid #667eea;
|
||||
}
|
||||
|
||||
.key-points h4 {
|
||||
color: #667eea;
|
||||
margin-bottom: 15px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.key-points ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.key-points li {
|
||||
padding: 8px 0;
|
||||
padding-left: 25px;
|
||||
position: relative;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.key-points li::before {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: #667eea;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 4px;
|
||||
background: rgba(0,0,0,0.1);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
|
||||
width: 0%;
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.step-section {
|
||||
padding: 25px;
|
||||
}
|
||||
|
||||
.step-header {
|
||||
flex-direction: column;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.step-number {
|
||||
margin-right: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.step-title {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="progress-bar">
|
||||
<div class="progress-fill" id="progressFill"></div>
|
||||
</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-overview.html">Win 主机</a></li>
|
||||
<li><a href="guajibao.html">挂机宝</a></li>
|
||||
<li><a href="longxiahezi.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">
|
||||
<div class="play-button" onclick="playVideo('step1')"></div>
|
||||
<div class="video-title">机箱安装教程</div>
|
||||
<div class="video-duration">时长:约 5 分钟</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="key-points">
|
||||
<h4>📋 关键要点</h4>
|
||||
<ul>
|
||||
<li>安装前请确保断开电源</li>
|
||||
<li>硬盘固定螺丝要拧紧,但不要过度用力</li>
|
||||
<li>SATA数据线和电源线连接要牢固</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">APP连接设备</h2>
|
||||
</div>
|
||||
|
||||
<p class="step-description">
|
||||
本视频将指导您如何下载安装飞牛APP,并通过APP发现和连接您的设备。支持iOS和Android系统,操作简单便捷。
|
||||
</p>
|
||||
|
||||
<div class="video-container">
|
||||
<div class="video-placeholder">
|
||||
<div class="play-button" onclick="playVideo('step2')"></div>
|
||||
<div class="video-title">APP连接教程</div>
|
||||
<div class="video-duration">时长:约 3 分钟</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="key-points">
|
||||
<h4>📋 关键要点</h4>
|
||||
<ul>
|
||||
<li>确保手机和设备在同一局域网内</li>
|
||||
<li>首次连接需要创建管理员账户</li>
|
||||
<li>支持扫码快速连接或手动输入设备ID</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">
|
||||
本视频将演示如何在APP中创建存储池、配置RAID模式、设置共享文件夹,以及用户权限管理。根据您的需求选择合适的存储方案。
|
||||
</p>
|
||||
|
||||
<div class="video-container">
|
||||
<div class="video-placeholder">
|
||||
<div class="play-button" onclick="playVideo('step3')"></div>
|
||||
<div class="video-title">存储空间配置教程</div>
|
||||
<div class="video-duration">时长:约 8 分钟</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="key-points">
|
||||
<h4>📋 关键要点</h4>
|
||||
<ul>
|
||||
<li>配置RAID前请备份重要数据</li>
|
||||
<li>根据需求选择合适的RAID模式</li>
|
||||
<li>建议创建多个共享文件夹分类存储</li>
|
||||
<li>设置合理的用户权限,保障数据安全</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="page-content" style="text-align: center; margin-top: 40px;">
|
||||
<h3>🎉 恭喜!您已完成所有步骤</h3>
|
||||
<p style="margin: 20px 0;">现在您可以开始使用您的设备了。如遇到问题,请查看<a href="faq.html">常见问题</a>或联系技术支持。</p>
|
||||
<a href="faq.html" class="btn">查看常见问题</a>
|
||||
</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>
|
||||
Reference in New Issue
Block a user