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
倚天全员x性转青书嫉妒心强你顶嘴×禁闭 - 综影视普女的黄油世界(np) 跳转到主要内容

倚天全员x性转青书嫉妒心强你顶嘴×禁闭

作者:未知
(�/�dA�^ڼ�#<@)�k���?�LU���}$,"���ضm �e���X�ŲY,J�k�3��<���a��� ��D6# ��*_�k�xV��� :��q-��Ȟȗ�? sT���"wX_��ؾj�*{�^�\���-7��D���6�ip�x���D~T��I�{A��jjˬAV���M�h���՜8YZE�-)��IZ�+t �����V���՜��� ���_eG� �#<�P ��1��Ҵ���F�~`qT� W�" ��P�Ԗ���*ҫ8G�� >�-nmO ����K���A�&-��2�|A� �C,n�xf�LԖ�s��: ���4�ө�sH��Y�+���<?�� �OH$5hJ:�â��IHejK�r�����Ȑ�A 9 ��B�V��pjKT��h͈�Wq��-��Df�Lmy ��� ���v��Զ|T� 8rG�����S@j��p!!{"c�ӱ��{�M��^�\jˬ"ge�Y��yi퉜�e%� ��y�ý,���Y� �C\����h��LC�;���ӔO�*s ȅͥ�A��=}��S@N����M� ���*�,��5%�- _(�!_&��t%�s�)1�\��|V&��� �=�g,�~�`�`�H@ 8 ���"�@@^���K X���B�!͵��L>� � ڞ��E�Y�upi��t�MrQ��2�t����T�t%���jg�@����D���2��geJȗ�υ��@ljKE�jJ�25�tB�'�gc{"o:����Ԗ�NC8$���6w1�ي����T!�$=$��f��G!{"W�d���S'��gBG�,n0�ې&���-��9QIuV�d���r���6ŗ�՜ 5nʺ���/`��Eg�V5�r�胊�d>���#R����*]� ������_ZO>�L�ҚOd��)���f����f� }i}ʚ��`6��!�������; ���h�jk{��k�����c�t-���꘵=����[�_Pcr���P[ۃ:��i��5E�y3��5���:8�L���CqR�&���2��o��C,��Rz��!�����M [fl)���� ��~�� ��ʞț-g�*<<�����~�9�e���?�pG����Ԗ��V�����h�!y�{M�CBn���mm? 9B�mj�W�d�k������(�{"�:�]�} ���]���� `o:�ھN��R2zȒ�[ۇ� �p1�=�9$7%��*� 2a�(�;8�4�I�|�p57%f�PMz��@��Ԗ��"��)���ɇ�պԖ�I�,=�����*o�'UH˽H�{����*�������9m���G!S[F.����;@�,3|mm���G��z�,�z�9�iO�0פu�A���������6Y楶�,dW�L�S��mm�p�LJnmQ�2Dũ-�I�&��>m���RM��km�:ҵ'2��Z�YeZj ��b-��"��-̹)Q���ѢƝ�S[z�#��xt���>���ךuZ���)!�<5�!�=�N�I���L5�%VY�����8����$����]��U�=V��L�N���W�<�P��˩-�E_��)�U��uG�'���O�k"{ ������j��r��!����wP�rh�%�t��,F�)tk��o�W6�<��Œ���/��9�@o5'��M�pO焤2��lў���c��ƶ�$�%��C\-�|2r��-/���)|�*Aq�A'�%dQ��}�t��W�+�\�5��|�,�����k�!,䧵�r���!�G�<�]}�pj��[���� �]pn\m���VHcȚ�_���L��WJo�|�k�=��L�� �Y�f�Ț�= �?N�⥶�А�Ά���i��!�A�z"+����b�)�g�,z��k ��YYT\�ūϥs�$�I����I�c�皐[�3\o��Q�;����a#��\�`�8��H/��m�MGj"k�[��H'<ܬ2d��dq9�EO������-%��BX��@f\]eM 3�/X@�� ��)!wB�T�RU��3md����?��&��].����>�������z"���,���,_(0����Z�d\�:�%tC~�4DdJȸUqC\{� { // 初始化认证状态 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: 'zyspndhysj', chapterId: '29397905', novelTitle: '综影视普女的黄油世界(np)', chapterTitle: '倚天全员x性转青书嫉妒心强你顶嘴×禁闭', 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 看小说网 版权所有