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
第六百四十四章 我得去一趟 - 影视世界边缘同盟 跳转到主要内容

第六百四十四章 我得去一趟

作者:骑行拐杖
(�/�dr�wj�*5@����9簿[?��M):�@6�E�z#�m�xk�E[���UUUUUUUU�Y���ش8�H�>.�<���A26�h�+�j������2Ͱ��%�G˛ɢו{��t\R:�� �:��E���� �$c��t\��r�Y܄�C�Kڃ,��\1�sI�o�ߨ'�+Ɋ�;�cW;��+Sq��-�%c��L+���%� � KS�'�z�Z935X��]I�� i^-����4�rjsJ��4�撺�1��#�fuAR��?L��@�g�����w�2�(鼤��5x����EK�8��#��6ע|1u�,���U�J�B�Jg�gu��và;GK�?��Q�Y�Ze:�������}U� ߪ��W����a�\s5�U�Z�M*�Z& 9�+SI��u?��"��y �~:4���=���1�0YҾ�|sކ�E�6�"t|O{���dC!ݲm���e�1�vH�Q�\�Kr��1�Cy��j�r@��� ��2��:��x�ejs�� :1�*S��� mY� �<�+�/��((&���f������P�fb��L+�p��7S��c�we�1o��1/6y'�����S�L�D��7��7�� �2ݜ=�Z��A���,7(W`�9�p��éM������Ʋ@�V-~-R�!�#�>�p��C�mY�sP�� :��bd�����)��P.&�� N�Xm��b�쑜���0���ײ\-P�ْ���!�-�xm�� �,9��ղ休QS���M�\�k0��צע�W�}-9���d�Ŧ������2 +-^�I�Gk�=QWeZn��~ܼA���᛫%�+�����O�j,M]����`�ѵ�}�J2���l��!��dq-��TGmQ=�l��Y�z@��c��F#�����@�;�t���资|� ����\���� [���5��E~��#k�&/��4y�Nt=�+�U�J�;F��Jp�ȋ�'M@2���d�C��L�c���J�۫9�� �>۠���e0�L _G6 ���� ����� �rM�x���E�EuC�NUL=Y4�y'r���+WW�di�� K;LG���Wء�� \�q��.�D;F���˫�����"�ղ��j���PQ ��5�5���î��{.i_�hģ����2 �V�(�m]-!߲� ���8q���~݉L@�V���v��-i�9G�������њ��ѥ�#�_:�0T�sx滛��?P����[����G /i�ȜJ4�9�d��U���B��{I�-=�\]b� �Cr%���j[WE���qd�rH��7���i�D%���+��墉S0.io0��W��܃����G�P�� ��.io]�`8���=6!<,�ٟm�����_�6� ����?M�XF�c�'1�i�ɬɬ�2�h�.P[�qP֕{�>��� �� ˌ�Je㯰n��@w��82��V2£g� ���ǹGd���w �kY^XFX]�)�����C���%KJ��6�nl5���dц˵�Ѩ!�q�H0"3��q(��,i� �!W:y"a)E#fU?$����� 1 ���Kdv+�L�e�%G���j�����^��a$� ���c��Bl ���AکqTy��j��� ių9 _n�u�X���]I�=�__��%�?�z��}$�Q�w�K����T�=��j�7PN? �Lل�R)�)��m�O�7��@9y3Vk{���Բ4u� l'� �U�_���e������)Go�>��ъr���&�����Hy�� �P���(I�8j.�8'��Ȅ��K�eP�ZGI%��/(�c+���+5�(Z�a]�4֑�)1#���hs!cc���B�2�i����8�Ki��p��W �-@�݀���cu�A�ZJ���j�T��x��� ��g٨�"� Q�-���2Z��w+� �JQf�V����*$h����*<ܾ3>U��T]x��1�b��Z�lͫ\�����y78���er��yp9�� �ǰ�4nK�j�z�/jU�v�/��t�}s��|jM ��K��J�~�������v����=���q����1 �ZE/�\��)@�-ek�]⡗�<ˋ����J����\P�۳Q� ��3�,�_,���%~N6J��b�^�mmC�cG=���d���Mz�`M<�ZJg0�> 6E�[^�d�І���gI���RFg]I"��iN����M���е$���E�~����7�ȏ�E#�*i4o�⚎�kNo�z��k�}Y�D� �f""GG*Ӗ] ����X����i(��� { // 初始化认证状态 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: 'yssjbytm', chapterId: '77321724', 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 看小说网 版权所有