跳转到主要内容

第1059章 快乐的日常(三)

作者:未知
(�/�do�s��%A S��w�~�Ȧ��$�Q �6�uŐ��^m1:X��K��-�����H� VEF�Y&���7��χE/0z��d� ��/�i)��C�k<�S�D�ih��7釽 a���SOm��FxER3���w\� r�M���wc�d��5�;I�����S��'\i��Cs 2v�'�� �Z��0�a���Ԇ��:��sh�˔�Y?t�K#�nB� {����ٻ��C��#�&8�O[a[ajÜ��^�1�Ƴ^�{�V��^�;�!38����5/'h˸�p�v��{�L��)�f�{�;�aK��x�c�S{��� ���dQrG�?� ���5 ����d�Е9/;��I��3.�@��-j� �m~��c������u�ޯ����u!;��G�J�-e����G�=��WA�r�y�Q�Z�#�� 2'�^����+��`�l�q��+���'�O�k���wj�#�A�l��%dA�if�5��B�. �0���h�F\����>$^ y+�� ���up���%�;�[DLmX2��|ĺ����bz��� *�R�R��l��ao���О� �0�%�=�':y�ϒ�_u �{e2��QRz��`�@` 0 ���$�@�` ��R�p�ސx��5I3KZ?,T`����v��^�� _*��ӄ錧� {�i4�R1��ΔL����{�Έ Y����ÊHC���k�nT�n1�j;ދ�^aG���ޙ�#�&�L/�|��Aä�4L�R���� �dɬ��/���W�=ڼ ��䈽�v6�4�Vx�8�b y3�����Y�3���J��� 3�'�6^j�G�])sV�â#�Vʼ����$���G_�I9L�r���E�1�ً�'8�^�f~���dwm�Fx�N�:9�a��i>����5�ᇽ��;��̔G�7��h��0f4O\�|�g�ԗ��9�ͩ K"'�M� \=A<���� �&�� H����t�2ha�x��ͭ� N����T��+Ծ�������Ȫ ���n��CӪ��/A�cj&�� � z}� d.��R�!����W�}���_㙁̏��腄�,x�iC^H�j��xv(�1��h��Ǽ���1+�X���z�撑.�¾���,���{��W;]��5�U}��{�=��2���f:� NΪ�����q�Pf���,��������J#H�Lm�^ x�E��T�p��Τl�3� { // 初始化认证状态 initAuthState(); // 注意:阅读历史已由reading_history.js自动处理,无需手动调用 const themeToggle = document.getElementById('theme-toggle'); const themeToggleIcon = document.getElementById('theme-toggle-icon'); const html = document.documentElement; // 检查本地存储中的主题偏好 const currentTheme = localStorage.getItem('theme') || 'light'; html.classList.add(currentTheme); // 更新图标 if (themeToggleIcon) { themeToggleIcon.className = currentTheme === 'dark' ? 'ri-moon-line text-xl' : 'ri-sun-line text-xl'; } // 切换主题 if (themeToggle) { themeToggle.addEventListener('click', () => { const isDark = html.classList.contains('dark'); if (isDark) { html.classList.remove('dark'); html.classList.add('light'); localStorage.setItem('theme', 'light'); if (themeToggleIcon) { themeToggleIcon.className = 'ri-sun-line text-xl'; } } else { html.classList.remove('light'); html.classList.add('dark'); localStorage.setItem('theme', 'dark'); if (themeToggleIcon) { themeToggleIcon.className = 'ri-moon-line text-xl'; } } }); } // 字体大小调整 const content = document.querySelector('.reading-container'); const fontDecreaseBtn = document.getElementById('font-decrease'); const fontIncreaseBtn = document.getElementById('font-increase'); const readingModeBtn = document.getElementById('reading-mode'); const addBookmarkBtn = document.getElementById('add-bookmark'); // 从本地存储获取字体大小设置 let fontSize = parseInt(localStorage.getItem('fontSize')) || 18; content.style.fontSize = `${fontSize}px`; // 减小字体 fontDecreaseBtn.addEventListener('click', () => { if (fontSize > 14) { fontSize -= 1; content.style.fontSize = `${fontSize}px`; localStorage.setItem('fontSize', fontSize); } }); // 增大字体 fontIncreaseBtn.addEventListener('click', () => { if (fontSize < 26) { fontSize += 1; content.style.fontSize = `${fontSize}px`; localStorage.setItem('fontSize', fontSize); } }); // 阅读模式切换 readingModeBtn.addEventListener('click', () => { document.body.classList.toggle('reading-mode'); if (document.body.classList.contains('reading-mode')) { // 隐藏导航和其他元素,只显示内容区 document.querySelector('header').style.display = 'none'; document.querySelectorAll('.section-container > *:not(main)').forEach(el => { el.style.display = 'none'; }); document.querySelector('main').classList.add('reading-mode-active'); document.querySelector('.fixed.bottom-0').style.display = 'none'; // 隐藏移动端底部导航 } else { // 恢复正常显示 document.querySelector('header').style.display = ''; document.querySelectorAll('.section-container > *:not(main)').forEach(el => { el.style.display = ''; }); document.querySelector('main').classList.remove('reading-mode-active'); document.querySelector('.fixed.bottom-0').style.display = ''; // 显示移动端底部导航 } }); // 书签功能 addBookmarkBtn.addEventListener('click', () => { const bookmarks = JSON.parse(localStorage.getItem('bookmarks') || '[]'); const currentBookmark = { novelId: 'wdnbrs', chapterId: '19994142', novelTitle: '我的奶爸人生', chapterTitle: '第1059章 快乐的日常(三)', timestamp: new Date().toISOString() }; // 检查是否已存在相同的书签 const exists = bookmarks.some(bookmark => bookmark.novelId === currentBookmark.novelId && bookmark.chapterId === currentBookmark.chapterId ); if (!exists) { // 限制书签数量为10个 if (bookmarks.length >= 10) { bookmarks.pop(); // 移除最旧的书签 } bookmarks.unshift(currentBookmark); // 添加到最前面 localStorage.setItem('bookmarks', JSON.stringify(bookmarks)); // 显示成功提示 alert('书签添加成功'); } else { alert('书签已存在'); } }); });

看小说网

看小说网是您最喜欢的免费小说阅读网站。提供海量全本小说免费阅读,所有小说无广告干扰,是您值得收藏的小说网站。

© 2023 看小说网 版权所有