-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtab3.html
More file actions
39 lines (39 loc) · 1.25 KB
/
tab3.html
File metadata and controls
39 lines (39 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<div class="archive-title">系统偏好 ⚙️</div>
<div class="setting-item">
<label>字体大小 (Aa)</label>
<input type="range" id="fontSizeSlider" min="12" max="24" value="15" />
</div>
<div class="setting-item">
<label>翻页速度 📖</label>
<input type="range" id="turnSpeedSlider" min="1" max="10" value="6" />
</div>
<div class="setting-item">
<label>音乐音量 🎵</label>
<input type="range" id="volumeSlider" min="0" max="100" value="30" />
</div>
<div class="setting-item">
<div class="setting-row">
<label>背景音乐自动播放</label>
<label class="switch">
<input type="checkbox" id="autoPlaySwitch" checked />
<span class="slider"></span>
</label>
</div>
</div>
<div class="setting-item">
<div class="setting-row">
<label>启动时自动翻开</label>
<label class="switch">
<input type="checkbox" id="autoOpenSwitch" />
<span class="slider"></span>
</label>
</div>
<div class="setting-row" style="margin-top: 15px">
<label>全部使用系统字体</label>
<label class="switch">
<input type="checkbox" id="sysFontSwitch" />
<span class="slider"></span>
</label>
</div>
</div>
<button id="resetSettingsBtn" class="reset-btn">恢复默认设置</button>