909 lines
39 KiB
HTML
909 lines
39 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="zh-CN">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|||
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|||
|
|
<meta http-equiv="Expires" content="0">
|
|||
|
|
<title>钢铁之臂 - 阿拉德:剑之回响</title>
|
|||
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|||
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|||
|
|
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
|
|||
|
|
<style>
|
|||
|
|
:root {
|
|||
|
|
--bg-primary: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
|
|||
|
|
--text-primary: #e0e0e0;
|
|||
|
|
--text-secondary: #888;
|
|||
|
|
--accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|||
|
|
--border-color: rgba(255,255,255,0.1);
|
|||
|
|
--btn-bg: rgba(255,255,255,0.1);
|
|||
|
|
--btn-hover: rgba(255,255,255,0.2);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[data-theme="light"] {
|
|||
|
|
--bg-primary: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|||
|
|
--text-primary: #333;
|
|||
|
|
--text-secondary: #666;
|
|||
|
|
--border-color: rgba(0,0,0,0.1);
|
|||
|
|
--btn-bg: rgba(0,0,0,0.05);
|
|||
|
|
--btn-hover: rgba(0,0,0,0.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
* {
|
|||
|
|
margin: 0;
|
|||
|
|
padding: 0;
|
|||
|
|
box-sizing: border-box;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
body {
|
|||
|
|
font-family: 'Noto Serif SC', serif;
|
|||
|
|
background: var(--bg-primary);
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
line-height: 1.8;
|
|||
|
|
min-height: 100vh;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.container {
|
|||
|
|
max-width: 800px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
padding: 20px;
|
|||
|
|
padding-bottom: 120px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 顶部导航 */
|
|||
|
|
.top-nav {
|
|||
|
|
position: fixed;
|
|||
|
|
top: 0;
|
|||
|
|
left: 0;
|
|||
|
|
right: 0;
|
|||
|
|
background: rgba(0,0,0,0.3);
|
|||
|
|
backdrop-filter: blur(10px);
|
|||
|
|
border-bottom: 1px solid var(--border-color);
|
|||
|
|
z-index: 1000;
|
|||
|
|
padding: 10px 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.top-nav-content {
|
|||
|
|
max-width: 800px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-link {
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
text-decoration: none;
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
font-size: 14px;
|
|||
|
|
padding: 8px 16px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
border-radius: 8px;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-link:hover {
|
|||
|
|
background: var(--btn-hover);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-header {
|
|||
|
|
text-align: center;
|
|||
|
|
padding: 80px 0 40px;
|
|||
|
|
border-bottom: 1px solid var(--border-color);
|
|||
|
|
margin-bottom: 40px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-number {
|
|||
|
|
font-size: 14px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
letter-spacing: 4px;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
margin-bottom: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-title {
|
|||
|
|
font-size: 32px;
|
|||
|
|
font-weight: 700;
|
|||
|
|
background: var(--accent-gradient);
|
|||
|
|
-webkit-background-clip: text;
|
|||
|
|
-webkit-text-fill-color: transparent;
|
|||
|
|
background-clip: text;
|
|||
|
|
margin-bottom: 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-meta {
|
|||
|
|
font-size: 14px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-content {
|
|||
|
|
font-size: 18px;
|
|||
|
|
line-height: 2;
|
|||
|
|
text-align: justify;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-content p {
|
|||
|
|
margin-bottom: 1.5em;
|
|||
|
|
text-indent: 2em;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-content p:first-of-type::first-letter {
|
|||
|
|
font-size: 3em;
|
|||
|
|
float: left;
|
|||
|
|
line-height: 1;
|
|||
|
|
margin-right: 8px;
|
|||
|
|
margin-top: -5px;
|
|||
|
|
background: var(--accent-gradient);
|
|||
|
|
-webkit-background-clip: text;
|
|||
|
|
-webkit-text-fill-color: transparent;
|
|||
|
|
background-clip: text;
|
|||
|
|
font-weight: 700;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 固定底部导航 */
|
|||
|
|
.fixed-nav {
|
|||
|
|
position: fixed;
|
|||
|
|
bottom: 0;
|
|||
|
|
left: 0;
|
|||
|
|
right: 0;
|
|||
|
|
background: rgba(0,0,0,0.3);
|
|||
|
|
backdrop-filter: blur(10px);
|
|||
|
|
border-top: 1px solid var(--border-color);
|
|||
|
|
z-index: 1000;
|
|||
|
|
padding: 15px 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.fixed-nav-content {
|
|||
|
|
max-width: 800px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
align-items: center;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-btn {
|
|||
|
|
padding: 12px 24px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
border-radius: 8px;
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
text-decoration: none;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
font-size: 14px;
|
|||
|
|
cursor: pointer;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-btn:hover {
|
|||
|
|
background: var(--btn-hover);
|
|||
|
|
transform: translateY(-2px);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-btn.disabled {
|
|||
|
|
opacity: 0.3;
|
|||
|
|
cursor: not-allowed;
|
|||
|
|
pointer-events: none;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 右侧滚动按钮 */
|
|||
|
|
.scroll-buttons {
|
|||
|
|
position: fixed;
|
|||
|
|
right: 20px;
|
|||
|
|
bottom: 90px;
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
gap: 10px;
|
|||
|
|
z-index: 1001;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.scroll-btn {
|
|||
|
|
width: 40px;
|
|||
|
|
height: 40px;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
cursor: pointer;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
font-size: 16px;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.scroll-btn:hover {
|
|||
|
|
background: var(--btn-hover);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* TTS控制面板 */
|
|||
|
|
.tts-panel {
|
|||
|
|
position: fixed;
|
|||
|
|
left: 20px;
|
|||
|
|
bottom: 90px;
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
gap: 10px;
|
|||
|
|
z-index: 1001;
|
|||
|
|
background: rgba(0,0,0,0.5);
|
|||
|
|
backdrop-filter: blur(10px);
|
|||
|
|
border-radius: 12px;
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
padding: 15px;
|
|||
|
|
min-width: 180px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-title {
|
|||
|
|
font-size: 12px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 2px;
|
|||
|
|
margin-bottom: 5px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-controls {
|
|||
|
|
display: flex;
|
|||
|
|
gap: 8px;
|
|||
|
|
margin-bottom: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-btn {
|
|||
|
|
width: 36px;
|
|||
|
|
height: 36px;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
cursor: pointer;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
justify-content: center;
|
|||
|
|
font-size: 14px;
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-btn:hover {
|
|||
|
|
background: var(--btn-hover);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-btn.active {
|
|||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|||
|
|
border-color: #667eea;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-progress {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 8px;
|
|||
|
|
margin-bottom: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-progress-bar {
|
|||
|
|
flex: 1;
|
|||
|
|
height: 4px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border-radius: 2px;
|
|||
|
|
overflow: hidden;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-progress-fill {
|
|||
|
|
height: 100%;
|
|||
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|||
|
|
width: 0%;
|
|||
|
|
transition: width 0.1s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-time {
|
|||
|
|
font-size: 12px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
min-width: 80px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-speed {
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 8px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-speed-label {
|
|||
|
|
font-size: 12px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-speed-select {
|
|||
|
|
padding: 4px 8px;
|
|||
|
|
background: var(--btn-bg);
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
border-radius: 4px;
|
|||
|
|
color: var(--text-primary);
|
|||
|
|
font-size: 12px;
|
|||
|
|
cursor: pointer;
|
|||
|
|
font-family: 'Noto Sans SC', sans-serif;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@media (max-width: 600px) {
|
|||
|
|
.tts-panel {
|
|||
|
|
left: 10px;
|
|||
|
|
bottom: 80px;
|
|||
|
|
min-width: 150px;
|
|||
|
|
padding: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.tts-btn {
|
|||
|
|
width: 32px;
|
|||
|
|
height: 32px;
|
|||
|
|
font-size: 12px;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 侧边栏 - 标题固定,内容滚动 */
|
|||
|
|
.sidebar {
|
|||
|
|
position: fixed;
|
|||
|
|
right: 20px;
|
|||
|
|
top: 50%;
|
|||
|
|
transform: translateY(-50%);
|
|||
|
|
background: rgba(0,0,0,0.5);
|
|||
|
|
backdrop-filter: blur(10px);
|
|||
|
|
border-radius: 12px;
|
|||
|
|
border: 1px solid var(--border-color);
|
|||
|
|
width: 200px;
|
|||
|
|
max-height: 70vh;
|
|||
|
|
z-index: 999;
|
|||
|
|
display: flex;
|
|||
|
|
flex-direction: column;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-title {
|
|||
|
|
font-size: 14px;
|
|||
|
|
color: var(--text-secondary);
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 2px;
|
|||
|
|
padding: 15px 20px;
|
|||
|
|
border-bottom: 1px solid var(--border-color);
|
|||
|
|
flex-shrink: 0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content {
|
|||
|
|
overflow-y: auto;
|
|||
|
|
padding: 10px 20px 20px;
|
|||
|
|
flex: 1;
|
|||
|
|
scrollbar-width: thin;
|
|||
|
|
scrollbar-color: transparent transparent;
|
|||
|
|
transition: scrollbar-color 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content:hover {
|
|||
|
|
scrollbar-color: rgba(255,255,255,0.3) transparent;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content::-webkit-scrollbar {
|
|||
|
|
width: 6px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content::-webkit-scrollbar-track {
|
|||
|
|
background: transparent;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content::-webkit-scrollbar-thumb {
|
|||
|
|
background: transparent;
|
|||
|
|
border-radius: 3px;
|
|||
|
|
transition: background 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content:hover::-webkit-scrollbar-thumb {
|
|||
|
|
background: rgba(255,255,255,0.3);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-content:hover::-webkit-scrollbar-thumb:hover {
|
|||
|
|
background: rgba(255,255,255,0.5);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[data-theme="light"] .sidebar-content:hover {
|
|||
|
|
scrollbar-color: rgba(0,0,0,0.3) transparent;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[data-theme="light"] .sidebar-content:hover::-webkit-scrollbar-thumb {
|
|||
|
|
background: rgba(0,0,0,0.3);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[data-theme="light"] .sidebar-content:hover::-webkit-scrollbar-thumb:hover {
|
|||
|
|
background: rgba(0,0,0,0.5);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-chapter {
|
|||
|
|
display: block;
|
|||
|
|
padding: 8px 0;
|
|||
|
|
color: #aaa;
|
|||
|
|
text-decoration: none;
|
|||
|
|
font-size: 13px;
|
|||
|
|
border-bottom: 1px solid rgba(255,255,255,0.05);
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
line-height: 1.5;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-chapter:hover {
|
|||
|
|
color: #667eea;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar-chapter.current {
|
|||
|
|
color: #667eea;
|
|||
|
|
font-weight: 600;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@media (max-width: 1200px) {
|
|||
|
|
.sidebar {
|
|||
|
|
display: none;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
@media (max-width: 600px) {
|
|||
|
|
.chapter-title {
|
|||
|
|
font-size: 24px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.chapter-content {
|
|||
|
|
font-size: 16px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.fixed-nav-content {
|
|||
|
|
gap: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.nav-btn {
|
|||
|
|
padding: 10px 15px;
|
|||
|
|
font-size: 12px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.scroll-buttons {
|
|||
|
|
right: 10px;
|
|||
|
|
bottom: 80px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.scroll-btn {
|
|||
|
|
width: 36px;
|
|||
|
|
height: 36px;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* 滚动条样式 */
|
|||
|
|
.sidebar::-webkit-scrollbar {
|
|||
|
|
width: 4px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar::-webkit-scrollbar-track {
|
|||
|
|
background: transparent;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.sidebar::-webkit-scrollbar-thumb {
|
|||
|
|
background: rgba(255,255,255,0.2);
|
|||
|
|
border-radius: 2px;
|
|||
|
|
}
|
|||
|
|
</style>
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<!-- 顶部导航 -->
|
|||
|
|
<nav class="top-nav">
|
|||
|
|
<div class="top-nav-content">
|
|||
|
|
<a href="../index.html" class="nav-link">返回首页</a>
|
|||
|
|
<button class="nav-link" id="themeToggle">切换主题</button>
|
|||
|
|
</div>
|
|||
|
|
</nav>
|
|||
|
|
|
|||
|
|
<div class="container">
|
|||
|
|
<header class="chapter-header">
|
|||
|
|
<div class="chapter-number">Chapter 98</div>
|
|||
|
|
<h1 class="chapter-title">{{CHAPTER_TITLE}}</h1>
|
|||
|
|
</header>
|
|||
|
|
|
|||
|
|
<article class="chapter-content">
|
|||
|
|
<p>寂静城,核心实验室。</p>
|
|||
|
|
<p>林克将光之根源缓缓放入古老能量核心的凹槽中。金色的光芒瞬间爆发,整个实验室都被照亮。</p>
|
|||
|
|
<p>「开始激活了!」贝奇惊喜地叫道。</p>
|
|||
|
|
<p>但就在这时,能量核心突然剧烈震动起来!蓝色的光芒和金色的光芒交织在一起,发出刺耳的嗡鸣声。</p>
|
|||
|
|
<p>「不好!」卢克脸色大变,「能量不稳定!没有核心稳定器,光之根源的能量会失控!」</p>
|
|||
|
|
<p>「核心稳定器?」林克连忙问道。</p>
|
|||
|
|
<p>「在钢铁之臂!」贝奇焦急地说道,「那里是寂静城的工业中心,有稳定能量核心的装置!但是...那里也是防御最严密的地方!」</p>
|
|||
|
|
<p>「我去。」林克握紧细雪之舞,「贝奇,你留在这里照顾卢克爷爷。米娅、皇女,你们也留下,保护他们。」</p>
|
|||
|
|
<p>「可是...」贝奇咬着嘴唇,眼中满是担忧。</p>
|
|||
|
|
<p>林克走到她面前,轻轻捧起她的脸:「放心,我很快就回来。」</p>
|
|||
|
|
<p>他在她唇上印下一个吻,然后转身离去。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>钢铁之臂区域。</p>
|
|||
|
|
<p>这里与光之舞会完全不同。空气中弥漫着灼热的气息,巨大的熔炉在四周燃烧,发出轰隆隆的声响。无数齿轮在头顶转动,传送带运送着各种机械零件。</p>
|
|||
|
|
<p>「好热...」林克擦了擦额头的汗水,环顾四周。</p>
|
|||
|
|
<p>这里的温度比外面高出许多,普通人根本无法承受。但林克身为剑神,身体早已超越常人,这点热量对他来说不算什么。</p>
|
|||
|
|
<p>「核心稳定器应该在中央控制室...」他回忆着贝奇告诉他的路线,向深处走去。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>穿过几条通道,林克来到了钢铁之臂的中央区域。</p>
|
|||
|
|
<p>眼前的景象让他停下了脚步。</p>
|
|||
|
|
<p>那是一个巨大的圆形空间,中央悬挂着一只巨大的机械手臂。手臂由黑色的金属构成,表面刻满了复杂的符文,散发着暗红色的光芒。</p>
|
|||
|
|
<p>「那就是...钢铁巨臂?」林克眯起眼睛。</p>
|
|||
|
|
<p>这只机械手臂比想象中还要巨大,光是手掌就有十几米长。它静静地悬挂在空中,仿佛在沉睡。</p>
|
|||
|
|
<p>「必须先拿到核心稳定器,再想办法对付它...」林克心中盘算着,悄悄向控制室方向移动。</p>
|
|||
|
|
<p>但就在这时,钢铁巨臂突然动了!</p>
|
|||
|
|
<p>「警告!警告!检测到入侵者!启动歼灭协议!」</p>
|
|||
|
|
<p>机械的声音在整个空间回荡。钢铁巨臂缓缓抬起,红色的光芒从它的关节处亮起。</p>
|
|||
|
|
<p>「该死,被发现了!」林克拔出细雪之舞。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>钢铁巨臂猛然挥下!</p>
|
|||
|
|
<p>巨大的手掌带着惊人的力量砸向林克,地面瞬间被砸出一个深坑!</p>
|
|||
|
|
<p>「好快!」林克身形急退,险险躲过这一击。</p>
|
|||
|
|
<p>钢铁巨臂的攻击并没有停止,它连续挥动,每一次攻击都带着毁天灭地的力量。林克在攻击的间隙中穿梭,寻找反击的机会。</p>
|
|||
|
|
<p>「这家伙...关节处有符文保护,直接攻击无效!」林克观察着钢铁巨臂的结构,发现了问题所在。</p>
|
|||
|
|
<p>钢铁巨臂的关节处覆盖着一层能量护盾,普通的攻击根本无法穿透。</p>
|
|||
|
|
<p>「必须想办法破坏护盾...」林克咬牙,一边躲避攻击,一边思考对策。</p>
|
|||
|
|
<p>突然,他想起了什么。</p>
|
|||
|
|
<p>「熔炉!」</p>
|
|||
|
|
<p>林克看向四周的熔炉,眼中闪过一丝光芒。</p>
|
|||
|
|
<p>「如果能把它引到熔炉旁边...」</p>
|
|||
|
|
<p>他开始向熔炉方向移动,钢铁巨臂果然追了上来。</p>
|
|||
|
|
<p>「来啊,大个子!」林克挑衅道。</p>
|
|||
|
|
<p>钢铁巨臂发出一声机械般的怒吼,加速追来。</p>
|
|||
|
|
<p>就在它经过熔炉的瞬间,林克挥剑斩断了熔炉的能量管道!</p>
|
|||
|
|
<p>「轰——!」</p>
|
|||
|
|
<p>炽热的能量液体喷涌而出,溅在钢铁巨臂的关节上!</p>
|
|||
|
|
<p>「嘶嘶嘶——」</p>
|
|||
|
|
<p>能量护盾在高温下开始融化,露出了下面的金属关节!</p>
|
|||
|
|
<p>「就是现在!」</p>
|
|||
|
|
<p>林克身形一闪,跃到钢铁巨臂的肘关节处。细雪之舞带着寒光,精准地刺入暴露的关节!</p>
|
|||
|
|
<p>「咔嚓——!」</p>
|
|||
|
|
<p>钢铁巨臂的肘关节被破坏,它的动作瞬间变得迟缓!</p>
|
|||
|
|
<p>「有效!」</p>
|
|||
|
|
<p>林克如法炮制,破坏了肩关节和腕关节。钢铁巨臂的动作越来越慢,最终停止了动作,悬挂在空中不再动弹。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>击败钢铁巨臂后,林克进入了中央控制室。</p>
|
|||
|
|
<p>这里摆放着各种复杂的仪器,中央是一个透明的容器,里面漂浮着一个银色的圆球——那就是核心稳定器。</p>
|
|||
|
|
<p>林克正要上前取走稳定器,身后突然传来一阵脚步声。</p>
|
|||
|
|
<p>「谁?!」他转身警戒。</p>
|
|||
|
|
<p>一个身影从阴影中走出。那是一名身穿白色研究服的女子,金色的长发披散在肩上,脸上带着温柔的微笑。</p>
|
|||
|
|
<p>「请不要紧张,我不是敌人。」女子说道,「我是海伯伦星的研究员,名叫艾莉。」</p>
|
|||
|
|
<p>「海伯伦星的研究员?」林克皱眉,「海伯伦星不是已经毁灭了吗?」</p>
|
|||
|
|
<p>「是的。」艾莉的眼中闪过一丝悲伤,「我是少数幸存者之一,跟着卢克大人来到了魔界。这些年来,我一直在这里维护钢铁之臂的运转。」</p>
|
|||
|
|
<p>她看向林克,眼中带着好奇:「你就是那个说要帮助卢克大人的冒险家?」</p>
|
|||
|
|
<p>「你知道我?」</p>
|
|||
|
|
<p>「贝奇告诉我了。」艾莉微笑道,「她说你是她最重要的人。」</p>
|
|||
|
|
<p>林克愣了一下,然后点点头:「我要拿走核心稳定器,激活古老的能量核心。」</p>
|
|||
|
|
<p>「请便。」艾莉让开道路,「卢克大人能遇到您,是他的幸运。」</p>
|
|||
|
|
<p>林克取走核心稳定器,正要离开,艾莉突然叫住了他。</p>
|
|||
|
|
<p>「等等。」她走到林克面前,从怀中取出一个小瓶子,「这是海伯伦星的秘药,可以恢复体力。您接下来还有很多战斗吧?请带上它。」</p>
|
|||
|
|
<p>林克接过瓶子,感激地点点头:「谢谢。」</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>回到核心实验室,林克将核心稳定器安装到古老能量核心上。</p>
|
|||
|
|
<p>这一次,光之根源的能量平稳地流入核心,蓝色的光芒和金色的光芒完美融合。整个实验室都被温暖的光芒笼罩。</p>
|
|||
|
|
<p>「成功了!」贝奇激动地扑进林克怀里。</p>
|
|||
|
|
<p>卢克感受着能量核心的运转,浑浊的眼睛中流下了泪水。</p>
|
|||
|
|
<p>「谢谢你...年轻人...」他颤抖着说道,「我终于...不用再痛苦地吸收天界的光能了...」</p>
|
|||
|
|
<p>林克扶着老人坐下,轻声说道:「卢克爷爷,您好好休息。接下来交给我。」</p>
|
|||
|
|
<p>贝奇紧紧抱着林克,身体微微颤抖。</p>
|
|||
|
|
<p>「林克...谢谢您...谢谢您救了卢克爷爷...」她的声音带着哭腔,「我以为...我以为我要失去他了...」</p>
|
|||
|
|
<p>林克轻轻抚摸她的头发,温柔地说道:「不会的。我会保护你们,保护所有我在乎的人。」</p>
|
|||
|
|
<p>贝奇抬起头,紫色的眼睛中满是泪水,但也带着深深的爱意。</p>
|
|||
|
|
<p>「林克...我...」</p>
|
|||
|
|
<p>她踮起脚尖,主动吻上了林克的唇。</p>
|
|||
|
|
<p>这个吻比之前任何一次都要热烈,带着感激、依恋和深深的爱。</p>
|
|||
|
|
<p>「我想...把自己完全交给您...」贝奇轻声说道,脸红得像熟透的苹果,「在这里...现在...」</p>
|
|||
|
|
<p>林克看着眼前这个少女,心中涌起一股强烈的怜惜。</p>
|
|||
|
|
<p>「你确定吗?」他轻声问道,「这里不太安全...」</p>
|
|||
|
|
<p>「没关系。」贝奇摇摇头,「只要有您在,哪里都是安全的。」</p>
|
|||
|
|
<p>林克不再犹豫,将她拥入怀中。</p>
|
|||
|
|
<p>在古老能量核心温暖的光芒下,两人融为一体。贝奇的身体柔软而温暖,她生涩地回应着林克的每一个动作,口中发出细碎的呻吟。</p>
|
|||
|
|
<p>「林克...好舒服...」她紧紧抱着林克的背,「请...请再多爱我一些...」</p>
|
|||
|
|
<p>林克加快了节奏,两人的身体在光芒中交缠。</p>
|
|||
|
|
<p>这是贝奇第二次体验这种美妙的感觉,但这一次,她更加主动,更加投入。</p>
|
|||
|
|
<p>「啊...林克...我...我要...」</p>
|
|||
|
|
<p>「一起...贝奇...」</p>
|
|||
|
|
<p>两人同时达到了巅峰。贝奇的身体剧烈颤抖,口中发出长长的呻吟,而林克则将一切都释放在她体内。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p>事后,两人相拥而眠。</p>
|
|||
|
|
<p>贝奇蜷缩在林克怀里,脸上带着满足的红晕。</p>
|
|||
|
|
<p>「林克...」她轻声说道,「我现在...是完全属于您的了...」</p>
|
|||
|
|
<p>「是的。」林克吻了吻她的发顶,「从今以后,你就是我的女人,我会永远保护你。」</p>
|
|||
|
|
<p>贝奇笑了,笑容如同阳光般灿烂。</p>
|
|||
|
|
<p>「我也会...永远陪着您...」</p>
|
|||
|
|
<p>古老能量核心的光芒温柔地照耀着两人,仿佛在为他们的爱情祝福。</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0;">···</p>
|
|||
|
|
<p style="text-align: center; color: var(--text-secondary); text-indent: 0; margin-top: 2em;">(第九十六章完)</p>
|
|||
|
|
|
|||
|
|
</article>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- 固定底部导航 -->
|
|||
|
|
<nav class="fixed-nav">
|
|||
|
|
<div class="fixed-nav-content">
|
|||
|
|
<a href="chapter-97.html" class="nav-btn ">上一章</a>
|
|||
|
|
<a href="../chapters.html" class="nav-btn">目录</a>
|
|||
|
|
<a href="chapter-99.html" class="nav-btn ">下一章</a>
|
|||
|
|
</div>
|
|||
|
|
</nav>
|
|||
|
|
|
|||
|
|
<!-- 右侧滚动按钮 -->
|
|||
|
|
<div class="scroll-buttons">
|
|||
|
|
<button class="scroll-btn" id="scrollTop" title="回到顶部">顶</button>
|
|||
|
|
<button class="scroll-btn" id="scrollBottom" title="回到底部">底</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- TTS语音朗读面板 -->
|
|||
|
|
<div class="tts-panel" id="ttsPanel">
|
|||
|
|
<div class="tts-title">语音朗读</div>
|
|||
|
|
<div class="tts-controls">
|
|||
|
|
<button class="tts-btn" id="ttsPlay" title="播放">▶</button>
|
|||
|
|
<button class="tts-btn" id="ttsPause" title="暂停">⏸</button>
|
|||
|
|
<button class="tts-btn" id="ttsStop" title="停止">⏹</button>
|
|||
|
|
</div>
|
|||
|
|
<div class="tts-progress">
|
|||
|
|
<div class="tts-progress-bar">
|
|||
|
|
<div class="tts-progress-fill" id="ttsProgressFill"></div>
|
|||
|
|
</div>
|
|||
|
|
<div class="tts-time" id="ttsTime">0 / 0</div>
|
|||
|
|
</div>
|
|||
|
|
<div class="tts-speed">
|
|||
|
|
<span class="tts-speed-label">速度:</span>
|
|||
|
|
<select class="tts-speed-select" id="ttsSpeed">
|
|||
|
|
<option value="0.5">慢速</option>
|
|||
|
|
<option value="0.75">较慢</option>
|
|||
|
|
<option value="1" selected>正常</option>
|
|||
|
|
<option value="1.25">较快</option>
|
|||
|
|
<option value="1.5">快速</option>
|
|||
|
|
<option value="2">极速</option>
|
|||
|
|
</select>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<!-- 侧边栏章节导航 -->
|
|||
|
|
<aside class="sidebar">
|
|||
|
|
<div class="sidebar-title">章节导航</div>
|
|||
|
|
<div class="sidebar-content" id="sidebarContent">
|
|||
|
|
<a href="chapter-68.html" class="sidebar-chapter ">第68章:绿都格罗兹尼·魔雷者莫纳亨</a>
|
|||
|
|
<a href="chapter-69.html" class="sidebar-chapter ">第69章:魔雷者的苏醒·莫纳亨的抉择</a>
|
|||
|
|
<a href="chapter-70.html" class="sidebar-chapter ">第70章:天界之门·根特外围的战火</a>
|
|||
|
|
<a href="chapter-71.html" class="sidebar-chapter ">第71章:根特北门·泽丁的誓言</a>
|
|||
|
|
<a href="chapter-72.html" class="sidebar-chapter ">第72章:根特南门·马琳的效忠</a>
|
|||
|
|
<a href="chapter-73.html" class="sidebar-chapter ">第73章:根特防御战·钢铁与血肉的碰撞</a>
|
|||
|
|
<a href="chapter-74.html" class="sidebar-chapter ">第74章:夜间袭击战·银勺杂技团的覆灭</a>
|
|||
|
|
<a href="chapter-75.html" class="sidebar-chapter ">第75章:补给线阻断战·UM-0终结者</a>
|
|||
|
|
<a href="chapter-76.html" class="sidebar-chapter ">第76章:追击歼灭战·机械吉赛尔的末路</a>
|
|||
|
|
<a href="chapter-77.html" class="sidebar-chapter ">第77章:海上列车·鲁夫特悬空海港</a>
|
|||
|
|
<a href="chapter-78.html" class="sidebar-chapter ">第78章:列车上的海贼·铁鳞团的覆灭</a>
|
|||
|
|
<a href="chapter-79.html" class="sidebar-chapter ">第79章:夺回西部线·卡勒特的余孽</a>
|
|||
|
|
<a href="chapter-80.html" class="sidebar-chapter ">第80章:雾都赫伊斯·无法地带的阴影</a>
|
|||
|
|
<a href="chapter-81.html" class="sidebar-chapter ">第81章:阿登高地·GT-9600</a>
|
|||
|
|
<a href="chapter-82.html" class="sidebar-chapter ">第82章:卡勒特指挥部·兰蒂卢斯</a>
|
|||
|
|
<a href="chapter-83.html" class="sidebar-chapter ">第83章:皇女的告白·天界的新篇章</a>
|
|||
|
|
<a href="chapter-84.html" class="sidebar-chapter ">第84章:幽灵列车·亡者的低语</a>
|
|||
|
|
<a href="chapter-85.html" class="sidebar-chapter ">第85章:伊顿工业区·克雷发电站</a>
|
|||
|
|
<a href="chapter-86.html" class="sidebar-chapter ">第86章:普鲁兹发电站·闪电之帕特里斯</a>
|
|||
|
|
<a href="chapter-87.html" class="sidebar-chapter ">第87章:特伦斯发电站·熔岩之萨姆</a>
|
|||
|
|
<a href="chapter-88.html" class="sidebar-chapter ">第88章:格兰迪发电站·虚空之弗曼</a>
|
|||
|
|
<a href="chapter-89.html" class="sidebar-chapter ">第89章:安图恩攻坚战·黑雾之源</a>
|
|||
|
|
<a href="chapter-90.html" class="sidebar-chapter ">第90章:安图恩攻坚战·震颤的大地</a>
|
|||
|
|
<a href="chapter-91.html" class="sidebar-chapter ">第91章:安图恩攻坚战·擎天之柱</a>
|
|||
|
|
<a href="chapter-92.html" class="sidebar-chapter ">第92章:安图恩攻坚战·黑色火山</a>
|
|||
|
|
<a href="chapter-93.html" class="sidebar-chapter ">第93章:安图恩攻坚战·使徒陨落</a>
|
|||
|
|
<a href="chapter-94.html" class="sidebar-chapter ">第94章:克洛诺斯岛·寂静城的召唤</a>
|
|||
|
|
<a href="chapter-95.html" class="sidebar-chapter ">第95章:寂静城的秘密</a>
|
|||
|
|
<a href="chapter-96.html" class="sidebar-chapter ">第96章:番外·贝奇的献身</a>
|
|||
|
|
<a href="chapter-97.html" class="sidebar-chapter ">第97章:光之舞会</a>
|
|||
|
|
<a href="chapter-98.html" class="sidebar-chapter current">第98章:钢铁之臂</a>
|
|||
|
|
<a href="chapter-99.html" class="sidebar-chapter ">第99章:能源熔炉</a>
|
|||
|
|
<a href="chapter-100.html" class="sidebar-chapter ">第100章:王之书库</a>
|
|||
|
|
<a href="chapter-101.html" class="sidebar-chapter ">第101章:不灭回廊</a>
|
|||
|
|
<a href="chapter-102.html" class="sidebar-chapter ">第102章:机械王座</a>
|
|||
|
|
<a href="chapter-103.html" class="sidebar-chapter ">第103章:番外·寂静城的早晨</a>
|
|||
|
|
<a href="chapter-104.html" class="sidebar-chapter ">第104章:番外·贝奇与艾泽拉</a>
|
|||
|
|
<a href="chapter-105.html" class="sidebar-chapter ">第105章:番外·卢克的嘱托</a>
|
|||
|
|
<a href="chapter-106.html" class="sidebar-chapter ">第106章:时空之门的召唤</a>
|
|||
|
|
<a href="chapter-107.html" class="sidebar-chapter ">第107章:格兰之火</a>
|
|||
|
|
<a href="chapter-108.html" class="sidebar-chapter ">第108章:瘟疫之源</a>
|
|||
|
|
<a href="chapter-109.html" class="sidebar-chapter ">第109章:卡勒特之初</a>
|
|||
|
|
<a href="chapter-110.html" class="sidebar-chapter ">第110章:无法地带</a>
|
|||
|
|
<a href="chapter-111.html" class="sidebar-chapter ">第111章:暗黑圣战</a>
|
|||
|
|
<a href="chapter-112.html" class="sidebar-chapter ">第112章:昔日悲鸣</a>
|
|||
|
|
<a href="chapter-113.html" class="sidebar-chapter ">第113章:凛冬</a>
|
|||
|
|
<a href="chapter-114.html" class="sidebar-chapter ">第114章:迷之觉悟</a>
|
|||
|
|
<a href="chapter-115.html" class="sidebar-chapter ">第115章:番外·艾丽丝的抉择</a>
|
|||
|
|
<a href="chapter-116.html" class="sidebar-chapter ">第116章:番外·后宫的日常</a>
|
|||
|
|
<a href="chapter-117.html" class="sidebar-chapter ">第117章:番外·与赛丽亚的约会</a>
|
|||
|
|
<a href="chapter-118.html" class="sidebar-chapter ">第118章:番外·与奥菲利亚的重逢</a>
|
|||
|
|
<a href="chapter-119.html" class="sidebar-chapter ">第119章:番外·与敏泰的雪山之行</a>
|
|||
|
|
<a href="chapter-120.html" class="sidebar-chapter ">第120章:番外·与莎兰的魔法时光</a>
|
|||
|
|
<a href="chapter-121.html" class="sidebar-chapter ">第121章:番外·与帕丽丝的格斗训练</a>
|
|||
|
|
<a href="chapter-122.html" class="sidebar-chapter ">第122章:番外·与莫纳亨的念动力</a>
|
|||
|
|
<a href="chapter-123.html" class="sidebar-chapter ">第123章:番外·与泽丁的天界巡逻</a>
|
|||
|
|
<a href="chapter-124.html" class="sidebar-chapter ">第124章:番外·与马琳的骑士之道</a>
|
|||
|
|
<a href="chapter-125.html" class="sidebar-chapter ">第125章:番外·与皇女的皇家约会</a>
|
|||
|
|
<a href="chapter-126.html" class="sidebar-chapter ">第126章:番外·与米娅的工坊时光</a>
|
|||
|
|
<a href="chapter-127.html" class="sidebar-chapter ">第127章:番外·与贝奇的人造之心</a>
|
|||
|
|
<a href="chapter-128.html" class="sidebar-chapter ">第128章:番外·与艾泽拉的守护誓言</a>
|
|||
|
|
|
|||
|
|
</div>
|
|||
|
|
</aside>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
// 记录阅读进度
|
|||
|
|
let readChapters = JSON.parse(localStorage.getItem('readChapters') || '[]');
|
|||
|
|
if (!readChapters.includes(98)) {
|
|||
|
|
readChapters.push({{CHAPTER_ID}});
|
|||
|
|
localStorage.setItem('readChapters', JSON.stringify(readChapters));
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 主题切换
|
|||
|
|
const themeToggle = document.getElementById('themeToggle');
|
|||
|
|
const savedTheme = localStorage.getItem('theme') || 'dark';
|
|||
|
|
document.documentElement.setAttribute('data-theme', savedTheme);
|
|||
|
|
themeToggle.textContent = savedTheme === 'dark' ? '浅色' : '深色';
|
|||
|
|
|
|||
|
|
themeToggle.addEventListener('click', () => {
|
|||
|
|
const currentTheme = document.documentElement.getAttribute('data-theme');
|
|||
|
|
const newTheme = currentTheme === 'dark' ? 'light' : 'dark';
|
|||
|
|
document.documentElement.setAttribute('data-theme', newTheme);
|
|||
|
|
localStorage.setItem('theme', newTheme);
|
|||
|
|
themeToggle.textContent = newTheme === 'dark' ? '浅色' : '深色';
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 滚动到顶部
|
|||
|
|
document.getElementById('scrollTop').addEventListener('click', () => {
|
|||
|
|
window.scrollTo({ top: 0, behavior: 'smooth' });
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 滚动到底部
|
|||
|
|
document.getElementById('scrollBottom').addEventListener('click', () => {
|
|||
|
|
window.scrollTo({ top: document.body.scrollHeight, behavior: 'smooth' });
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 页面加载时,侧边栏自动滚动到当前章节
|
|||
|
|
window.addEventListener('load', () => {
|
|||
|
|
const sidebarContent = document.getElementById('sidebarContent');
|
|||
|
|
const currentChapter = sidebarContent.querySelector('.current');
|
|||
|
|
if (currentChapter) {
|
|||
|
|
currentChapter.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
|||
|
|
}
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// ========== TTS语音朗读功能 ==========
|
|||
|
|
let ttsSynth = window.speechSynthesis;
|
|||
|
|
let ttsUtterance = null;
|
|||
|
|
let ttsText = '';
|
|||
|
|
let ttsSentences = [];
|
|||
|
|
let ttsCurrentIndex = 0;
|
|||
|
|
let ttsIsPlaying = false;
|
|||
|
|
let ttsIsPaused = false;
|
|||
|
|
let ttsSpeed = 1;
|
|||
|
|
|
|||
|
|
// 初始化:提取章节内容
|
|||
|
|
function initTTS() {
|
|||
|
|
const contentEl = document.querySelector('.chapter-content');
|
|||
|
|
if (!contentEl) return;
|
|||
|
|
|
|||
|
|
// 获取所有段落文本,清理HTML标签
|
|||
|
|
ttsText = contentEl.innerText || contentEl.textContent;
|
|||
|
|
// 分割成句子(中文按句号、问号、感叹号分割)
|
|||
|
|
ttsSentences = ttsText.match(/[^。!?\n]+[。!?\n]+|[^。!?\n]+$/g) || [ttsText];
|
|||
|
|
ttsSentences = ttsSentences.filter(s => s.trim().length > 0);
|
|||
|
|
|
|||
|
|
updateTTSProgress();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 更新进度显示
|
|||
|
|
function updateTTSProgress() {
|
|||
|
|
const total = ttsSentences.length;
|
|||
|
|
const current = ttsCurrentIndex;
|
|||
|
|
document.getElementById('ttsTime').textContent = `${current} / ${total}`;
|
|||
|
|
const percent = total > 0 ? (current / total * 100) : 0;
|
|||
|
|
document.getElementById('ttsProgressFill').style.width = `${percent}%`;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 播放当前句子
|
|||
|
|
function playCurrentSentence() {
|
|||
|
|
if (ttsCurrentIndex >= ttsSentences.length) {
|
|||
|
|
stopTTS();
|
|||
|
|
return;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
const text = ttsSentences[ttsCurrentIndex].trim();
|
|||
|
|
ttsUtterance = new SpeechSynthesisUtterance(text);
|
|||
|
|
ttsUtterance.lang = 'zh-CN';
|
|||
|
|
ttsUtterance.rate = ttsSpeed;
|
|||
|
|
|
|||
|
|
// 尝试选择中文语音
|
|||
|
|
const voices = ttsSynth.getVoices();
|
|||
|
|
const zhVoice = voices.find(v => v.lang.includes('zh') || v.lang.includes('CN'));
|
|||
|
|
if (zhVoice) {
|
|||
|
|
ttsUtterance.voice = zhVoice;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
ttsUtterance.onend = () => {
|
|||
|
|
if (ttsIsPlaying && !ttsIsPaused) {
|
|||
|
|
ttsCurrentIndex++;
|
|||
|
|
updateTTSProgress();
|
|||
|
|
playCurrentSentence();
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
ttsUtterance.onerror = (e) => {
|
|||
|
|
console.error('TTS error:', e);
|
|||
|
|
if (ttsIsPlaying) {
|
|||
|
|
ttsCurrentIndex++;
|
|||
|
|
updateTTSProgress();
|
|||
|
|
playCurrentSentence();
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
ttsSynth.speak(ttsUtterance);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 播放
|
|||
|
|
function playTTS() {
|
|||
|
|
if (ttsSentences.length === 0) {
|
|||
|
|
initTTS();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
if (ttsIsPaused) {
|
|||
|
|
ttsSynth.resume();
|
|||
|
|
ttsIsPaused = false;
|
|||
|
|
} else {
|
|||
|
|
ttsIsPlaying = true;
|
|||
|
|
playCurrentSentence();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
document.getElementById('ttsPlay').classList.add('active');
|
|||
|
|
document.getElementById('ttsPause').classList.remove('active');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 暂停
|
|||
|
|
function pauseTTS() {
|
|||
|
|
if (ttsIsPlaying) {
|
|||
|
|
ttsSynth.pause();
|
|||
|
|
ttsIsPaused = true;
|
|||
|
|
document.getElementById('ttsPlay').classList.remove('active');
|
|||
|
|
document.getElementById('ttsPause').classList.add('active');
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 停止
|
|||
|
|
function stopTTS() {
|
|||
|
|
ttsSynth.cancel();
|
|||
|
|
ttsIsPlaying = false;
|
|||
|
|
ttsIsPaused = false;
|
|||
|
|
ttsCurrentIndex = 0;
|
|||
|
|
updateTTSProgress();
|
|||
|
|
document.getElementById('ttsPlay').classList.remove('active');
|
|||
|
|
document.getElementById('ttsPause').classList.remove('active');
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 设置速度
|
|||
|
|
function setTTSSpeed(speed) {
|
|||
|
|
ttsSpeed = parseFloat(speed);
|
|||
|
|
// 如果正在播放,需要重新开始当前句子
|
|||
|
|
if (ttsIsPlaying && !ttsIsPaused) {
|
|||
|
|
ttsSynth.cancel();
|
|||
|
|
playCurrentSentence();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 绑定事件
|
|||
|
|
document.getElementById('ttsPlay').addEventListener('click', playTTS);
|
|||
|
|
document.getElementById('ttsPause').addEventListener('click', pauseTTS);
|
|||
|
|
document.getElementById('ttsStop').addEventListener('click', stopTTS);
|
|||
|
|
document.getElementById('ttsSpeed').addEventListener('change', (e) => setTTSSpeed(e.target.value));
|
|||
|
|
|
|||
|
|
// 加载语音列表(某些浏览器需要异步加载)
|
|||
|
|
if (speechSynthesis.onvoiceschanged !== undefined) {
|
|||
|
|
speechSynthesis.onvoiceschanged = initTTS;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
// 页面加载时初始化
|
|||
|
|
window.addEventListener('load', () => {
|
|||
|
|
initTTS();
|
|||
|
|
});
|
|||
|
|
|
|||
|
|
// 页面离开时停止播放
|
|||
|
|
window.addEventListener('beforeunload', stopTTS);
|
|||
|
|
</script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|