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
004 壮观的鸽屎雨(求鲜花,求评价票!) - 直播:我在动物园的愉快日常 跳转到主要内容

004 壮观的鸽屎雨(求鲜花,求评价票!)

作者:白花七鸟
(�/�d%_:�t"? SpJ�;�0 J�L�۾��l�c�,"a!�l��6��$��D ~$d�t� ���3��@r3�c��LEym<�h�{C����$2edν8�� �*SR_9���SX��$2�|qV�v��Z���_���N@��%�� :��(�l)o�;��z(nT��4�}�\)o�;���x"T�c��G%F��Ð;*qq�4��4���'8鋳 �#d� �W�rKyÐ��̫틐A��G��\p8-�t�bq�C�Y��f�ShO�%-�D1(6Q�V�Ɠ2r&e;kE~qE1C�ut��\��\�Ut!����� �S��Q㳮I���S��%dN�[�z*C�>��qdR����@1�NP:Q��@�:���7�GH�j.<�%�:���^�5]��G�?�Ե����L}q6��"���7{4D�$�!�=������]�U��&i�gK��*S�Z�GPL��ƳQ�����k�,Y�0�S�L� s`.�7�W�[)�<�Ѩ������8���ӽ8K�|s:idSK+�n5�f����|���䋳bB_�[m.�l��>��6���n�7���<���s2G��C��xXnEoE'���`lGr�5e��$rf��h�و�M�6�"��.f)sƳ�5�9%�0]�� �-w q��3�C���Xw{&�$s�<�!�1(��l)�Jl�D�u�Zr݋� $��D��x닳٨I���*�@2h�#��^���~�?�|)󋳑�=���7G�)�p&HdKt�xR"���Y����H��3t�b��~*� ��t=���'�h#�W�j��.��_����D��S�$���C�IV�!���l�H�!�/ΎN�0n�r(������xF��*�3��:�����KGc(Fe��d�xb(&5_�"�SR�t_�-�]�`=��lDvI�E�LZyr����x2ʫ�['%�`�TL��Ð/�r2 !�䋳���y2ed.s�=�W�/�g$�%�.'s�>!d��$f=���^m/S��'��a��L����^O��R_����``N���ƒ���;x�#{ty����� �C�/�^�w奞ehm@'J�mY|���g]3���4���q2��`��|W,�6��� !�p��f�g#���t)�N�M����ц\}qր��5�K�$��@��fG%�J{ �x �< YAd��$� >0.���LN �"��Ҥ �M�?�]\L��e�-�尓0��] �T��w%X0��:(rҺ�W�RϢ�k �*�����Q9u��ܲ;xf&eie;��� L��*���gŹ�Dׁb�xG{*��$�C�%�%m�p&�����@Q� �ӂK+�D�����Diң���8� z�M�\O2r8�S� ��.�t��ص���YͰ{�:�l4��� `��N$�� ��H �  AD�7��# __��a�4 ������@N�u�-ȥW�����=�[���� �Xs��E�h�)������)6��%��#���Cz锰Qެ���� E,m�2/�E����%3��r�2;10j�W&Tu�VF|!(��b��%�s"1Yif��!MQ�������>���|�%��EKS�Y��Q5�n�;�&`�pQ��/vv�E'OuNJ!X�jnu"zS �����Q� r^�S~#�Oސ{�'�В�� �A�XXS�ЗF����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: 'zbwzdwydykrc', chapterId: '46395213', novelTitle: '直播:我在动物园的愉快日常', chapterTitle: '004 壮观的鸽屎雨(求鲜花,求评价票!)', 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 看小说网 版权所有