Deprecated: mb_substr(): Passing null to parameter #1 ($string) of type string is deprecated in /var/www/kxs-php/controllers/NovelController.php on line 303
第41章 专属副本 - 重生带回十个神话天赋,我已无敌 跳转到主要内容

第41章 专属副本

作者:锦衣少年
(�/�d��k��$%?0 c�������Õ�oO��.Ȑ��1] ���d� W";��ҁ�-g��t�T�g>7<-������n�C�����u#�l� �EF�ļ��سMJ�Z��vw�����p7��y�=�4Stst�JP$��\�B��"c������Dw��u:���Q'�:1�vt�����u� 0�x4Ԍ���+����3P\����k<�cW� E~Rp����ؓm��,��]�䯱5���I�`�#��lJu��E�"���Y���3��g�c��xΗ9�[�s ??�('��S���9_��R��|����� `�y��‚M>�al��Yy4pkۃ(򇹖�Jܽ*ײ�'?�̔!� "xry̶��-�k�v����qM��"�R6V6G9D��f�����P{c;x�m_q�ᇅ��e{��_�1�_*��\�Ʈ����@��L�Eo��Q�l3P|U�Q�uBa�����A�[�9�'�1�dc2��*.��cyHy'�=�&4���q|����+��@w��V'�w��%�b�[z�d[�|rIٖ�J�U@܁�z tI��s�s�o:�>������U� ���2SP�%�V�����p��k���������P{��D �[Bs�k���?�?#�A������� 8�8��7 �+��R%:zܮJ@d���=џQ�p� +���MȜِ��/r=��"_q���qϗIoi���L5�//q'�bf�S&W~ݖ^������{�8�� �f&�N���y�ɓ�[J �'�� 5��t��I��x~�5ނ�B�����P����s�d�![�/��';c�J�%�Jʶ̴��3���ױ(�sy�=gvG�����al���]��}D�9�-3-=׳�T|��L���m� ƶ����[1�T�@�q�G�-)������8��!s���Ӂ�kl��d���SY���Ȑ�IЩ�[fڝMac[�+�=f�a��:[��,�� "+._-���b� �"v7��۟Q��\㹵]��p�-3�<�Bnm[ /q�b�M��ʱ�*qP'@�S�_�{cG����A�e����W��al �e+�}��i����B�bO��mO�#K p��f8�)��:6�l��-3+�\����ulJµ��h���Yc���pvB��o:E>B�bd��c� �D�@�L����D���0�V����2ӈ��ҥ�:4^Mǐ�p��y&zW%.W�2g�56( D0� D�@pP'� ���mI��y��#�v`��x��!����MW6�� �m`/�l��Ė�Z�ױ-!��X⮤����9� ��%�J����?�,)��>���@q�׃��\��4�[�-3��12Y2v�t��@��>!��K�]����1d��!2�4WP�U9�L'�[2�Ҝ]�dj� 舞]��,_Ǟ,��b�a�/��ǐmi��N��{@We;"�"`{0������]�"XfZE�Fct�L��Ϣq��Lt���� ��9�9��쨞 ]��0sďM���+�7<�� �ٲT^k;T��sA �e� n �'��wDs5/,�3�LAw-3]scl���J<�O舙�+�dnU��nc�V��<ٶ����E�[�<��t~=�l�矱�D�{��(F0� ��g�P� *e�4\���@��Oʭ��4�s:�h�{+�Uԉ�!.+ꄘ����� ��E�D��Fɑ�#U"R%� ָ�Y8W3���9���D�9?ٶp� M�-J�&'�]�[�C޽|w ���kl��������s�g�;�\Rv�<�;KU����d���^QeΙX$Ig�g$5�P�dM�#��# '�-_,H�2��A5{ї�I�)��&�`z-�{a�#�Qv�m\J�2&$��M]/,F�-- ��X�I{�c��Z&��C?�r�?Y�- I�k�Èۙ�j`Q�� C�=�I�ɐ���{P�,����U���­�•��˴kz�j�%�[5�u�Mv�F�ř�p+ �A^�W���p� I������b���who�g�n�Ӻ��V�m� ���KïK���7"��rx���h,�j�t���Ț���$J�d�����芰���}C�sx��q'H�bZ̟��h �攔6��H7Yr���7l�����xA����Xs7���ֺ����ʫ�tD�R�c�B�_� V�����S$�K���eƢ-Y�Bf��� �r]ޙp��2�P�7W7��5&� ����AB�Ș» ����Ȥ����1�υ�%���D#���A�!w�d!�R3*�H�� 3Ձa�A@y6'M���q��"�:&�MG�J��UI૙��t�RL� { // 初始化认证状态 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: 'zsdhsgshtfwywd', chapterId: '6505902', novelTitle: '重生带回十个神话天赋,我已无敌', chapterTitle: '第41章 专属副本', 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 看小说网 版权所有