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
第0050章 感觉又长帅了 - 林五岳苏月灵主角的 跳转到主要内容

第0050章 感觉又长帅了

作者:免费阅读
(�/�d��sZ�$)>0 ����ޟ���vzʸ��h�:0p; kT*��i�EmQ�����-��K��!� d~z}��h��p9ʘ��tX-��N��=;g4���̼q�觩'+R�XNR�e#�����/��B�8}un �l����ܼ������j9�x�s b1�E���\�LzM�l��I��HP�e\��PB'H܄��b��H�$]���2Vˈ�I�W�'<�D��qL���'o0��tŽ�c3��j)�&���q=ʚ�*&��#2��~�o0]����`�� �B���A9Dd�ȓ��d^�^C<=k�"_�c�4h�p���'�V[�VY �(I݉Ezܓ��� ��\.:� �D#Ҏ��(C��H������#������6}6�l�����GҚ�b]q��X� �r�W� �4FY�����X��'�o�2I�O�s˄ytB�+�!FF9��Ⳋ�������L�{/㢣/�W�0�xX�\�� �s����ي�X-����(���:����d-��(;L�j�y1@D�T���yO��*w�O��T��j��c���a�R�!M!���(o}u���E� �?�[$Wx,�{��7$c�F4pZ��1(jYq�m^>]����,ᰝ��3,d�t�ѡ �ԧ��̫�p��g�5�r�I o��ղ�����{��I��:�N����A��e���T|�gZ{�' 9�8)l��ԩ%�Z*/<��<;������Iʊ����j����{�g��}V���GG�� ���RS[F�jIRWSy��.� �{u>�\H�"�-��:�:Q=�I�➤lFy��)�A�ϣE �@�7� �y�q̷�%���:P�t ��H��1�Ψ���5q��h+�"�6U�$~�c+�E�-�%�O� �a:Gk�Ȗ��� �s��"?(�_QX�2'dI�f�.MX���i�{��:�B�(C�_x�k��VO� �5��/[3/�d�ZF.������6���Ӻ#9����I�1�Ȋ]C(g��j������ז�e!kQ����@����A�A9uj�)㦊���N�!�rC�+`��ղ!y�Ԟ� �U�-�|3/e�0�\ ف���5�'�z��I �:5���',#d���u7p�q:\|� �wh/dn� ����؉ ���Qt�� �sz����֗/m<�A�bD�����H���yby�#�7p�y�jENJ�~P�h�X-!���� D%7E���\�\��r����;���g��� �ش�꿒�(n�=cZ����F-Vˆ�3�����᱗�"?,X����k�6�ؑ���c�Z�8_@~f~��J ���H:s7�jF#��]*7�.~R� �c�4��+��gP�m.>,����� ��k���� �%.�����ɳe�sM� Sk4<����|�{z�=DdƁG�,VK�v����/�׋��j�������6��<_U6?\ƴW�#�__@�1��]MɊ�ք�].����Nk��ي��̍H��x���I�g�Ő�BMz�]��Bh,�$u�{��<_I�%(ьR7D�6�lt��/�+:vv��e�os�B�2i1��8�Yat�����l��'Ut��ʊ�/�;�?���`{���I�3N��<��X-=W��O8�u'�j�Ľ�*�m�A,�;�+�#��B��380�8`@��b.H P��@ �� ��Zn&��Vt4VK��=Y�` ٍ�ï'ee���8-ہaq7��_��]q9�I�Qq��g �[�����.��v���ID����(zǸ��L�mni �"+:6�� ��������oC�p+��+.��#ο��{_q/*���N~N�*o'�e��>�~M�4W�����V�[�n*@3�t�^#� ���ӵl���(z4��Z74�I�v?.(s�G��$m�������1�ʓ��X~�M�8hQ�EVd�q��(��h��$e8M!�ty �� �툦""'��e����U;'���w(.Iї��xi�6D� { // 初始化认证状态 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: 'lwysylzjd', chapterId: '71583662', novelTitle: '林五岳苏月灵主角的', chapterTitle: '第0050章 感觉又长帅了', 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 看小说网 版权所有