Notice: file_put_contents(): Write of 3583 bytes failed with errno=28 No space left on device in /var/www/kxs-php/lib/ZstdHelper.php on line 81

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
第94章 散播谣言 - 龙头至尊 跳转到主要内容

第94章 散播谣言

作者:简单的鱼
(�/�d=�o���'9@Sh%�{�&%N����M"Pa�`�h������6w��W�X9����bH�O�V�kjg��=`~XO9Ls�g�����������o���6p��@ \�&�����+lM��h�vOɬ��T��a����)���;�"6����.t�)bP���pC3)`����$�=��M��0N[2b������8&㓆?*��*S��M�D�Ѐ��^�����o6��޳*3v��)>aɓ�����ً|��zO �Q���G�wBy��I�)����=9� H�(p��"��1�bS���E�L"L����"��' +t.e�t�ʯ�=6o6�>V>��s,�J���)'��sA���4L�W�D^� �D�����M����-���P�z�i41 �L/�2S�,���zOK%/4x46e���z�E�ŋ�F��#�; OxS�KL�žئaO�$G貵͠�Mf��E~�p’8�V�������:� ��m+/����e}�0cl����s�6���(/� �)�3�K,� ��%1)-@i��8���mM��rz}�`���%Coa{� ,����=k��Wt�@��6�y-z�&���7�<����K���i؏)MX��zO���p_��Q9�xm��� k��ye|PsP�osk2�(ᢋW+_ͥ/�{�\�����o���HR�M�¦������zO�r�N� [d�R���_�,����y�s��1c� X!ᕄ����q����+�,�lmS�����I�F(�� ��%6��paJ�����Z+y� Z�l,l�t���� �ֈ' �۔��rI��l��$��=��;@>^S���a�G�btKl��W�:�8e�{v@?&�vq���=9��H���_R�p̅[���4XR�K��� N��pX2b||B���� �5W�����o2S�13bS<���zυ��ؒ2� ��2�0�+ O9�@�ܮ��̛�9��{N&`1�(S�J�g�����y��>��%6�>�db( ��Lw¶�z�rr�����B�l� ��L�M�"��`�4�)p��)ۙ���xL,l��;a�{���&N9,�>��'ᗔ7�[@߹xGtq��N���{Z��L[���fs��Q���vux�6dh����IÚ䷋S'\���0xLx7��̬��¾�o6?�� �1}e|Pآ��L�X�g�Û�1�I�^�+ƺ�|@�A��)�5�FY��k����=?�4��l۰' w\�YN0���zO�y�`��X�EU��cƦ����( ����i�:f�p�6�x��G���:����p����k����Xn�S�+������F� [Rf�a��[ ~��g�f�W� �1�A |��`{da�^�7�S��} r�L�W}�yu�y �G�t����?���6svh���UrU��7����S�����ņ���mNU��c�+T.�r�E^��9c����������2W���&p�#<|a[�i��� ����^�%�O&1�)|!6��瓆7�{�'��ɣ�=�=�0��]GY^�}��L/�/ ���@|ux���:6�%e���\ۆ-e���r137�caGʬ�q��ؖ�I�V�ޓr�X��Kʼ��t{L2����K��� �4�o!#,�Z�������wT�Bv51Cf���� ۖؔR� 7��Y�e&��A�A��=EU%����~�}Y1D�aO�,�8�a}�p/��%�/aS�i�����z�▃$�rHlQ±���s@.)��~>�zx���/ ���l^� N� �����Ӱ�&_@����G�C� �0@p�6ڀmo�d�%�{zl�ă!c��(#N��s��J�' �{VII)��;@�b�����1.x|��sO�Jٓ�1�?�a� J�&yc������mn���/x��z̔� ��έ�L�*'�> ;�`v�YI��64>�=���l?>�m��B� K�aC�$X/�Ŷ��Z������6�p@vU�C�+"ѵ�)�$W$|��D�)�?UY"0@�J_+Qv9!���Y�1�#p�fsN�= �,/'��2-�s�kl�؛�%�m>���)��G9dl�-�\+S���疃9iX� � { // 初始化认证状态 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: 'longtouzhizun', chapterId: '8022526', novelTitle: '龙头至尊', chapterTitle: '第94章 散播谣言', 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 看小说网 版权所有