Notice: file_put_contents(): Write of 4534 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
第十四章 嗷嗷叫 - 亮剑:我的荒野求生 跳转到主要内容

第十四章 嗷嗷叫

作者:苍白之血
(�/�d�(E�z�P,9P�`����E]�"�l[��A B X@(�,�o��%��ժ.���j!��ă������2NI�#���'��� W򴼿l�>�|�%7��ɇ�Wq%ύ�m��1�_T��f#; �t�� �C�{����s27�੻��A��F�#�J�� � �?b��_< �>�豝���AU�0��>�Ll�`̻���<;�)ebn�A�G�;uW!v c��؞� r/�x$�������x5rm�(����z�.l_�\u%O��1� �!�[���\��͕<)\�y�E�+�-�A�W�#7�̱�R�Sw+y~�?8�sח���!�@,� �<��3���R�N��� ]8�2�� +7� rϙ���6�9=�l�{ �+yb|��9"�c�����+Q_�R��c�J� ە� y^�Y�`�E���{(���\�����ئPr��sq�z�.t��c�6�l'�� GF�i/��H��d�-���?Fne0�z����=6��K!g ��w{K�>�)x�{�1�)e�s���� O��r�q4�l�2�TF���;�W�bbPsC$rCۜ�3� S xB������ ��+6C(ecޭ�i�m�8�����Sw1�� ����������O�%ؼ���|N�r惘�Լ��H��%�Sw+�'\�H���<�qA�4�������'(Ͼ�1ۢ�����+��&�i��H�5R� <��K�P�����5g�z���3C��7t�blO���܄� ��߄�+��xT8f����\�2D��:�x����:`i�E���A��9�����xS����b2���}�@�|-s�csis�-�>�ƮT�D��Ƞ� d�u�8y'��� �la��� �����#yT8��٘�%Ư��Dԉ��c��TN);a��{taB��E�R�rȓ�3+m.�>b|%OE��z ��^�Kt��Q�b����[��Ӱz"tP�w����s��C! =�(�lo���]���Sw�{����b]�f�Oa>u���bs�������M����ۺ�([��\D���#�k^�� ����ə����g�:�t�I>�F�V�[i���<�r��5n����Up4Wx�����{_TSw5|�<��36���r����;c��S�#p��-�n}ODӏ����ꥄ d�¹���_1sfSɏ�o ��Π ��\һTr-�䉀p��Omk<� ~�|=D� �4�E}"�Q�R���������J���N5r��)��֏y�ɛi�#�V=gb��x�;�I��9�]��˱���E��w���8��d�u�s�Rʋ�A��MP��s��A�{t�1��#OW���z�sn�S��0nGv���S,QuS8��)4R�W̤2~f[z�LѮ���K����̀6��ɡ�}d�rЅ/�m�w�]A� 4ۈ����~Px�=ǂG� ��`�A�|^��t.eb�C�lv��Ʈ7 |��Swc' �H�T7���0e����;�iĺ��;�����C f䉨 ,�rќB9�܉��:��2�mLs�z�|9L�5����!���2;���f�3���0B��ba"��p%4@` 4`$�MfdX��Z[��?Vzg�7��Niݼ��0q�I�\�&��5U=@r^W�I��; XJ&}SPR���"Y���8�B5H���xG�r�cN����n"j���ݼ|n����/ر�� � R-��� �G���� ��*�!�v=,7��kdt�_�a��-� �}j������݆�]u5)�H�[�c��D]�<��MFh�S�#Z��F?�B�wD!�/{C�He��C�%|ܥ���]3 "-�,��SK���mH���r2{��:,$@��w�7�t,��(��5���j3�>�����\Ii�����M}��f�I���Ɯ �{u��健ϰWT�������� "�ثR �㎍`dM� ��� <,���|J,;=�(��8�r3� � C�%��"����Ԅ��<+�U[����<����������e(�uT���j��y�����޸һ��1����iCfTo��p˻���&�e�Y%{�'{`{�WA�;b��K��V� >eU��Шa6��D�fZ|�a01���"%�������9�yYΠ�ݽ����x� h����7k�)n��{�ѹ` �]��u��-�Vx��<�E(��c �)��gf؁��q���R�i��qJ�4"�v*Oh�z(b��V�����V�9�c�cPyT�B�1Y z��sGJ1N�ObY��� gOq����� �� dX ���p#=XAφt�W/����P_�J�v�a㽷�Y���(��C { // 初始化认证状态 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: 'ljwdhyqs', chapterId: '38919382', 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 看小说网 版权所有