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��r���)@0 ��I�;���򌚂�(����B�r���il�1+͂��O ��`zF Y��9Er�q����!W=/�m��!���r�ٔ��%��hd�բ�_f+ _�^�|(�Ӱ�ԭx�mG z��)��a�C��F$BWRu$��R��gF������Crt�f^��4�شGq9�1�?�Ɣ�`v����zL �g"���W=E��9�F>u� W�%W̴�v����g�S� }�� ���NsN���4[Z��i�� ��Ґ�w����$3x(n�Y v�q���F�,�ธɻ 3H!2浇i�� �S����عM��sP�"���ZF�L>f�<4黤�jrg��� Y����T�D�(���"����UOra&�[��GDv�����݆Ks���\}j���3e�9DcH~lm9�ӁO��2Y9c4�U�+�5�;6/!�0 ����*C� GDV�t�}��|�� ��"��4�0�z.l�D�zF-���L,d? ���{�栮�b1�I..���֏J� ݿ�Z�k�S�r�� 1�rp�H�Pwp\dQ�6X�>O� L�1�h{�d꒾c�GB��F5n�̠0+�.lL��J�@>��������Q�[> ��ô(2�a=L��|��9�l��J���-#�"7t��h dλ�"��ȔES,��,u-#o�g���K�����9��U�w49�j��0m�*7&V�l���ed����_��0ݰ����)ș�-r�Y�Q�[!g���V��W=A˂� - Q�W=H�B�{����������LBW0f#c6P�~xByg��J��uM�vH���+͆�{9�Ly?��=L�#7/��؏���*6�B0!�`}�K�v���A�GqWk�ӭ�%�s�C$w�:c�H�!w*�̡�# '��F�"��n��"rCdꊶ{��Pw�t"?X�nl�rI�W=L�T� W��\�b��� ��O�k�[�7D沎��٫�'롬"� K��zn�݀w4|P#?�s��"_�ܺ�)ֺ����Ρށ��g��1�+�*hQЈ���+�b(E�*g��岮4����T�ldlkrq�zj�K�W��0�)/��M�̅��HN�|�!w����F�ݥ��@�8��s)�[�+��A�Ec!�)���;��۞٘��ì�mOUy�u�i���%�#��0 m��d��ܦ1�;�b�{�s����y�^rwc��FpLW5�}�@���;��ɻ�r�S�E s�mM�1L�Q���'h_� �_��� �(2��rLw��$ڐ{��Nc+�^��y萻�i��!א13��l6���j�J����9�)�tN=�;"oY�UO��d� O��Ow;���.�han��J����W=3��lZ��Ŧ+�v�a��m���5}�UφȎ�l�c3�����B �m&�����GM76:���9� $GY�н��}�̆ȋD @DP@���F,��p@TP�0APЀVO�e%�oݹKCF�\�����'E�# GB�.m�����q���E{�v��� ������<�2�W=4�e��l�6D^ؘ"�M�.-��g�Y�%�Ӎm�m�r}������n�uM޽fDd�ȏͻ*�!2£C�ю"6�A�0-��+"�(g��]R�����S�����ǃ��U�U�L�z��Z,�rF[A#�+@�2K�|��-5��c��=��r�$���UϓǼv�0����ݍw�SP�諞��ɑ)�B9�J��5��4�m'���[1�ޤX�{�qz�]Gy%��0��,r���z��@�����Z�!wkr��b ��dI�K�c#E39Ui dʫ07��۴���6\����yh��.\J�+_?x����>�] draf������?�[78�tcQ����*W�Ud�n�]��ƅ� { // 初始化认证状态 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: 'jinriyipianai', chapterId: '68660862', 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 看小说网 版权所有