跳转到主要內容

第1018章 提前行动!

作者:方正一
(�/�d�}J�D.? Ss&�{���Z�G�I-��3g�"b��-���fk ���Q�#��.�����q#p����$٠�-���}9�X����?�� �Sf03����^nC���ܢy�� V�t *'=2h�Q6�l�"g.2ݜ�H��R�� fp�/L�|8I�h����v���N�T? s�"��0}f�V9(� #�5G�ֹ�2��MT��8e�Y�i��G�A���Ԇ���++xؼ�屛�6���IpV�й�� G.y��$�1qjÛm����?�[�<)qx=��@��̠m�ʘ8vS��D'����e{�bI�[«�g̾Ȧ6< s��̶�9��Ku�ʋ�c7�l8�����Wۊ��"[�\�`M�[��Oz�[��?���gP9�A�W� _L�q.>0i�+���يڀ��e�����T�Tz�=vS�!g�4rƒG ��.�2c� _$�e��C�3�c�]����琍Uc/(Pj�Qv�>c���B�p�Ft5sS��6�v���٘�Vc?�s5b�)B U�j{����M�-���L)��0��c8������!����E�/(P� �<� y����䔲!(��8���5 ��r�ƙ3��E�?����2������� ��|f;�<�?�<��e�����})1t�MǛ�l�d[�3��!&����8W9vSE��K��ı)_ά��نP��� ���2hpxyl�6/�T�D͵6��A�(jq��m��+�3��n�`�҆6p�CI �9�Ry%+�����i�G�Ox�9eJ���17�&�T}%f��I�=��ط�\��#�3�&z�p�u����į�!�c!�Ȟ&k �]a��}j���["N>l+� �D�p��9vS�{��PƔ���o����Sv8�騂BT��cۑy��K�#�{ �ʞ\�^�v��i��3�N�8ܜ�Gs���?88+����9}q�c� �k����9ρ� ����L�'�!�g(;�a�<�y�u�X�Cs ⱛZ6h��R��a�g 4�C���#8>�ɖ3_*��}ppp0 s�pEm=kd�^�M���gƐr�ñ�z�':9k�ԆÌ� O�ng������f�{eo �do9��v�䡒/��sSJ� O֨?���e��l�xbvhy���j)�aL�x����Uɱ:���� �����&�O�c7��,�Ԇ/�Ԇ��I��^�B�����fs�F�C�k��� <  <�@� @�@P@p�L0�M��*j��Q�n3Ȏh�<��9e,��M������R�k,Zݔ��*����N�6|�2D�1�v�a�E��3�R=�a��?�3���e}�zF��e���A�� c$����D�Ԇ;�k�g�7(�WyGٗ�Ad�8�8�a�@�O���qP� �S��M5� �nz���d�������8."=����� ��p�j��Ƚ���L)�!�e��M�,�ɘ�-[ ��>���������CK��Y�# 8T�M�-�g�X�������1E�P�TT������K�Ìݔ�.�83V��������,ghE�H�˙5 ﰝ0=�4��� 8�( y�W��#�^��5v�/O�� Z^����sM�����3;l_Ó/���C �r��C'"�T�0`j�_��4�*�Xy��5�/�v����MAd&=d���l鏲/�C<�F$�L 3���Md{�Sv��.��P��j��a�G�s5"qӄ��Wۛ����Tmo.h“����,K��&K�n���C���񯂞��;`Pq�/� ��q�N�[��g�mi�ݔ�0h����]�������g����Ѽ�3�8yh�3�#9v�ę-�S�6>�7���k�q�*9�l �h�]E\��1��B˛�ݴAy��3*�&���0�lG�X͛����Q`�($2"3" �Vs�HD("��C��C��y�� ��tb&�z8�R ��·yu�M!#���>�ەƖ�������#�l,�@����厱S`�v�u+n���B3s�b���@�x�fp0\�Qw�&(��q��s����"�m�ay4����a�Ye�@i��F����6��2|��)4�=�<�b���SP�� ��f�;��|}���c���EXpt�JJ)�p�ۗ(�E�E�s[�*!0��~l%��������E��` ��]�ݢ#Z�V�UY���A���� �ũ,��&%\�4��i������| ��V<@l�5��*}g�v���ޕpK�d?ME�|�t�ͺK����v-`�����n��'0QI����~0�) AL���O���p�Ӎ�n>���IIw9_���H�����wah †�.ז��#���h����r�#N�bmc�E^/d��3�߇��2�~����bL]����T}�%�'#(��� �km����T�7 �V�g�ѹ����l�J�.� 1qg�$/�1�H�B��3��h����qR(UA/KPB��f/ �€�ꁘ�� ��K���Fz{�"��?�}���<�=1U~��X�� �U�D*��q�6� �����z$śr� { // 初始化认证状态 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: 'wdxxltyx', chapterId: '48811619', novelTitle: '无敌小县令 桃源县', chapterTitle: '第1018章 提前行动!', 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 看小說網 版权所有