Notice: file_put_contents(): Write of 2588 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
052章 亮眼的小雨欣【5/6】 - 我被四个校花女神堵门! 跳转到主要内容

052章 亮眼的小雨欣【5/6】

作者:孩子妈是警花
(�/�d�uP:��>0 ��%�{��*�*��7��o6"BDPl�؈_� ��� ��jR��s�?��|�v��"Tq������Z����pD�+�U��UflZq�\eS��s;QS�=�AS{��l �La^�T�=����$�.n&�y�̦�˭���<�B/H�`wצ `T����<׀�r^Rx3���4�iN���1 �sBr�]&�ש3#sȮ(�Nm9uH>Ek3�~**SV���$�E7c�M_��4�Pe�}�rΝ�L� J��K*TdA?�!c���Ŋ[�S�;�9��`rfӑӜP{��ĺGs��l���tA��ڨ|ZmЪs\"��i�@�:�C#�nlnuω q������V����9}�S��t�5�yfdRx7�3�.�z���Te��IؚdAK�yΝ�������LW!��3�:�wx_>�~Q�\�����J*̼V9�i��[�\�B9E5��(����`ArHt1��8�A�M?8�l����w�Pqd��s�͌�]�ٔ!il�z �C,�L���B�g�Z�d���%3���Rr�2B��E��������8��ѕ�3�b��9��R2�h � ���V� b'"M /w�̦'x��V��H��k�/HgT��暓+�I���d6 9_��UJ.Yo^�qL�a܊��S�A�9��LVF��"�̦�n��0?K!m&В�!����>�)��"��sF>a��$y���� �<�KW��v`^�~a�!�!W5�5��c��G�\u�ǂ����|A�5nu�U9�hfSͼ�V�Al�s�����j���=����k��y3�u#����3�R���^΋!nC�NH^��\|���5'���C��2�I'Q|A�V�պ���2�qmؙ(���!� b�,.1{���>(�|�����kgk�= �l��tfӒ�Z�s%���L��MNJ���G*^]u���F/L���b݊jШ���(y����ap@r�`� ���Z�񞑏r��t�yf���G#��wx�r�ҙɛ&�r���T��jL����:�z�|g�銏a/:��y��$�'P��i���@��ǰ>4�c�W�lu*y�b�F�꾲i���e�����Ռ�ZN}R�H���Y�ū!�{F�p��dq�yA%/uI� �`P��n�vxo"�D~fd��u��d=��Q�:�qE�W6mPL�����i���SgӝMg 4qf�&�� o�����O�G`W��N��lZ�oT*��TD2º��x� �E����fH�Rr��t�A=���v3�g��›��v���1�G�G���K��l:�)�{�=���{�� �2������Z��>��T\��ש/��^��E㹙@= ԣ�J�%E� M2:3��\Rt‡f ��*˩7��]����=�A�|�|a��<��8 pA5P@ X���`� (0 �$���Φ (p`j��щ�-�&� �@ҏ�?N�ٔdA3 �[��;9��XIJGtn�Mfn&P��Qd� ��˭��KF���H�F:�������E ~N!sx�C��?)�V93�G=l%�U>�x�yI�ս��}���s��z}�~�|A�v��/�H�M%J �6���Ѵh����:���v�S�O��A%_����@2�8}���Zݛ��q �l�Sy�Qt&j��~l�� NK�f�O��x�tG�)��^���S�o�V�xfSGeL�a�V��oD�x����/ݛ��l��E� zr��s�9QO�u���Q��� ���muouoFn�F�M#? �n+�v�W�.U�|4� ��KL^`P����c��i-1T�hbp#'3�z�/^��h3q���̦#�9�H�H7�!(! ����0� �Z�����ˍ�� �bm^�T�`����@G���0�݆�)%�s\�Z�`�r�}8��`�������Ytj ܰ�6T"6$ ��;h�jK��m׮�Z�H'�tQ�ŝ<"��^4cg�$l0�tF;S�a<#�!H�w+���݇a�2 ��O�m�ĺ�-b�� V���&:Ó����ߐQMp\��poݳ,�4 \��J�~�4�1ՀA�=}��*�e2�T8v�ʂ# �5W+{��8�ӌ�{/�7�� { // 初始化认证状态 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: 'wbsgxhnsdm', chapterId: '65258157', novelTitle: '我被四个校花女神堵门!', chapterTitle: '052章 亮眼的小雨欣【5/6】', 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 看小说网 版权所有