跳转到主要內容

第四十八章 自带BGM的男人

作者:月血风花
(�/�d� ���P-B ����9�gH�=;�%J`�����<��"0��I Q-% 5�T�&JAi�-�F� �����',z�*H� � �(�$�֗�w�/>��ř��d��4rU8A�8��H�҇@ǔ��]��7av��=�;��p���P,!ݔ�E�1e/�`�����=u<{���!��f����K�KH���lÛM̿�Fix�м �Ǿ{^���fe_P| ��whp����X�7�">�#{��#/ �M+�{�� �r��}%�#[��Cq������y컊���Z~�>k���l�}W�-�}8x�ʛ0o�̨]��O���|��2F?���� �J�e _dW�F\��FM<zw6wv��v�rO�3F��7�N�.�� ���m�}A1xQXh�!0� � e #,� �"�Q�þv�C{��b҉E����=��a�7�r���Ou��wM��FG1�l/Z,����[j�ͦ��(�/���b6ct��/���R�?=�A�f��wM-Wu\��%���C��:�A=���9�7�b�]/�^�q�c�?[6ž;fN����]��GЭ�5�=�@!w��g�g��Ȗd?��&�ڣ�9�=fo6e�N�\�8I�C�U"��-v~��x��g^6U�\��[#����Y�]���(C� 2KěMO�?�fe����DZ�v����p] �&@ qU� �J�#�AUL�x�)��&��w/���? w�|\aO�A���E\��#Ž‹>���$r�+�ݗQ�9н�F[m;w����kH�1��D�u�c����O�������fc�lC�i0�����W�t�������l��D|%r��3FG|�țMY��ʆ\_M�(>yn���"�=dw�E��4:�z(�G�[#_P� ?z%;�� �:_���=��� �'ڇ@���o6݄��0��+�! �}���\��6KĞ�+f�T6���A�?x���(s ?�U�x\�e���cʾ����ͦ�� S�w�=�����X�]���l���l�ُS�9�\1��嬅9 t���)�c(�.�p���9U��,"����/�7��$�a�0��+��E�O#�!�-�;� N�"ªo�}������M;�O|�b�����=�� ���~��0�. �^�[9=�8ѝ͑͡.z���w;�%�ˡ^��F'A"�(����z��&?\k�fӕ�/�9��v� >� o�$bQ+*����}ٹ� �ޏ�[�-����w��>����q��Ⱦ�x�x�/P���q�'�xMՃ�k��B���\D�FvxQX�0xQ��{a��]�"���e���jaU�}��x�N����j�_��ju��Pt{ ���㎏)��qS��}�SzD�U��[@�F� oet���R=e|F�ί���%�[MǾ�j�ķ3?�>B=k��l�&HǾ5�"�P<������O�o �e~c���[1{� {+,��h�0�y�l��5���x�i%�%Ev�=��;9��qFû/���bX�4z�����'�,b����O)S�$[�>��lL��cf�H��b��{‡��8+�2�$�%�c��(E ���_ds�; �7�z\�p컗�?,������S���T�8�u16}�,){0�#�sO��2Y��O�A�/6w8K<�� �Eviɠ�]�Q%xQ��-ax��^��h���{(���N��r����,�E6+�O?�`HĦ#�J:m���c�0<���?k�~�����b�̃��T�fH}J��w=�׆�D\q8�4:���yIy�Cc��.�M�7������?���Cj��OE�?�Ɣ�@1ɡ���}�W+�ͦ�_d�@���gf�� x0 x�@�A�@PA �" 0� xB|65!>��&�Wx%�FO<~�)g1�� +�D>[ �1e���=��.����va��k�L���qQÒ�E �XB�(�C�sJ��Fp>2�>���.z���fSąO���az �E����'�P^n}��–�7��*�x��2� ��� ��$�d�V߁�#�ȼ�-zh�u��pʱ�����^e�%eJ)�튲km�;d[�ZJ�}�e6�p�ɑ���rQK�� A�v�p8>�p.(�d/��"�h��/���?e�"�xT �P�1�3�y�=��Q _{� �+ٗ�8k9Ʀ#�O�ٴ6�2��kx�|7��� 6!*�� 4�3g�]�^V�.#�c�$�^�2q5�?��5���.� �~���Y�#W����c���^���=r�Q{a6�8�e����G�+P_0��$�/�/�T�c��C@�yX�t:50L@�8���������o �B���˩�bwz�#��x ( z�l*��,�(�� |H5pm�fS $��eՋ)�b;��wU�\ZxU��lZ&�������o&����)=�fӔb��W^5�TdUýL�������v/�n�=��3�:̃�ڸ�i5��r�v���IP�2 U�-�v���X pΊ�ѕ-L�K���{��v8�J�%d�<�\���D��L�jl����mk�J��S�fO��v��AV�K���0 { // 初始化认证状态 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: 'wxsjsxt', chapterId: '66204702', novelTitle: '无限世界树系统', chapterTitle: '第四十八章 自带BGM的男人', 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 看小說網 版权所有