0328
This commit is contained in:
315
使用说明/pages/longxiahezi-guide.html
Normal file
315
使用说明/pages/longxiahezi-guide.html
Normal file
@@ -0,0 +1,315 @@
|
||||
<!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>精致小巧的Win10小主机</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>可选配HD 500G硬盘</li>
|
||||
<li>使用2.5寸金属机箱,精致小巧</li>
|
||||
<li>支持HDMI或VGA视频输出</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">
|
||||
完成Windows 10系统的初始配置和网络连接。
|
||||
</p>
|
||||
|
||||
<div class="video-container">
|
||||
<div class="video-placeholder" onclick="playVideo('step2')">
|
||||
<div class="play-button"></div>
|
||||
<div class="video-title">无线网络连接设置</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="video-container">
|
||||
<div class="video-placeholder" onclick="playVideo('step2-2')">
|
||||
<div class="play-button"></div>
|
||||
<div class="video-title">Windows 10基本设置</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="key-points">
|
||||
<h4>📋 关键要点</h4>
|
||||
<ul>
|
||||
<li>利用标配的无线网卡连接WiFi</li>
|
||||
<li>完成Windows 10的初始设置向导</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>
|
||||
Reference in New Issue
Block a user