跳转到主要内容

第九百七十五章:艰难的选择

作者:唯爱文清
(�/�d�\Z�>0S+��w�y����SR0h񭸍�5m�ۆ�b�c�f�,�r��d���q��r]����;7����H.rq�-S �B��.�,FK�� ��@� W[ }>���֠>'�W[%+�\�w�s���.�8F�Ȕ�N�`=L'7�>�Pq��e���^�z�[m��sԦ��b��pQO��IЫ�V�\W�1Z^��O��b"3<�&��*渚��� �"�Br��9!W�O�-�1Z>ͱj��M��l]��T�gI����/yl�U���d���;��.��"�i��,FK�tΥ2����8��5F��dqRM���l��j �9'�0@�8�-������A��Zy�ĵ��]Gm�� �WB��*FK��L��u���A�:�(�hI�r5� �Kj,����$�:Xo0���Y��$�<;�zA�h������w=��nJ��[�#@8t����� �L��]�� Z������Jʚd\�����LsS��5FK��f��d���4�b�+���j��1T�[�c��hR���B"!c��Dq��4ɸ��%����Q]`�� �1Z� �P�Q��L2�Ԥ�\�GW[u��|��]]m����E�� ���Cӯ� ��5�s�s1�Au�`�� ����w�`Q��-9�^(|1'���Ff�>�tOkNȤ�!:�e_̉�wF��A������ 2���Z�`28����W�ż�&�B9�sT�G�����|..���"��hYm���� ��"g([7[�57%��L�d��#�'����!�7�1�k�k 3�C���O��z�L��f�!���ٛ� �# [�ƦI{��M nJ44YAK�)W��{嚔�f�\�z�q����7ʓ접Q�;�+0U � ��\�M ��ҒG�Fƌl�<��(�n0��Z�8f�F92�a=�C��XE�gW=�I�Eu���d�<[mU��B����ZB���j�)�;�% 3RoX�����"9��iN�{@&֣��5ɸw�v2Mٮ���d��-%�GBn�����2�i�I_nj,⮕N6>�]mu#����&�P��Q��hI1�9��{�^r��}~E�����v4�$y�)�H�~���@yԵ(r�Չȡw��_�'��C �[�+��p��j�H%�V�fzH��VI��vSB4iOw1ǭtgP�� ���H{ZK��! +u����j`�Ӛ� �_ăF�(�D,���?,�K�����R� 4 @4P@��bN �@�X�D��@@��FK+� L��* : ��{��G��N_S�F�1m��ɡw(�e�c +;AV8t�6��tKv�SLٮ(2�%�ڒ}� �j�>���ԕ�����[�W[�d� l�Z3v�-g� �;$o�[�% Wu�8��ٵbTC�1S���I��`7b�UN�(�� n�e�����)s��.N�n7%s"A�Q�V�NP�Z�R5��2���=��@�8>�D�-9!_JasRŔj��WvR��� �RW�i.����d匮;�D���V�6e.F�Q�G�&)')�<�鮈�(��*����0TN� ��5!�vS��},�B�rBK-]ŴHkR�4r�d�ޥI����Ћ�:�� ��ƺQ��W�NX\��uH]sP1�[�&[mu�|�y����ɳ� �)UGF����+dM�6�adM�jRGH�nJ�֨����000! ���p!�5`**@S@���eH\OǮ�}Q*H)�-}��$اW� Tv���*:�(����iH֩�l/8��I �@�0�w�л<��3~���ě�'����7D���^n.�K I{���~��Ajy���)��bք�1q#:����IՒe^��D���~�8�(�+8 �T�̇���X�x�����S]��X!@*�16�.7���\D��)�)��U��t~ ��`��o%�G2����j�,|;�݄եZ�u����2�u��u �k�H����!Ƅ��C9��e�*,�@|˃��i���im ��,{JM&\T\��r�z?�5A��Cf��$ '��:t��&5�N�7�4�zZˎ�P#_?.FE���ڑv�4qCu��&�ɳt�K�n:�I`�`Q`:���އ�?�� j�~��^ 7+Fa����O����h�}%P���� � { // 初始化认证状态 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: 'jszhyj', chapterId: '68698565', novelTitle: '剑神纵横异界', chapterTitle: '第九百七十五章:艰难的选择', 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 看小说网 版权所有