跳转到主要内容

61 生化武器

作者:权心权意
(�/�d�z*�L.@ -����30��C�#�n��^ " �dj�d�$9����"��/Q1����h�L�@ P����8�Cv�����G��2ɓ��GZ������cy�9e�v�gK ""|���C�&1�셓�����5��w�*�p�z�/6��`�zψ퇆3�u�� �?L��d�K�z��7<���d�;/!�ޓ�yR�"�K�  �z��A�W � QX@��q����=�Է9D�C?�e]ۼޓ��� ^,2�!+\�^^�Y�� q�x�o,�������7��\e�� �9�Y+��(�����=c+hNOX�y�蒱S���g�B$P�Q�Ѷ˜�\m^���W�Y�"y��+ �ys�f[+]2q�}U6��@��2�勉�o�Y��_A#\mٴ�޳��%�5cgʼ����6J�e�"�@�L19���{n�O� i5&�C�0�����u�zO����#V�^�$<����F��о���6����a̖�򬄳�Q�~8���w�L?�E�b<8���8xyj�R���;�|{d��n}�kan<rϰ�*�o��loZ� ������M�&z�����8~$f�0h�>����R�����, V�n'^�Y'������F`ї8�H�7��4g2�<� c�^��0C�5�"�E ��S�u� ٵ�]�D�C����<�h;�aj;�a��$�L)sO�AbKw{�>S��*g�6�J _m�z<�����!�7��Z|h��v����� �\<�m�<>�9�aG�G&UL�d��=CUX��ۍ�Y�y�� 9�f���X���LO? �>rd��9��l�L�L����7�\�@?ur�*�Y� ��(�G�* n�r�4�_�y�W����,���Q,�ɏlsr?�����!:v���k�7�\�x�⍱YG�.˜�2g ��x:�����t}|��En}<�ɭ�k��2�P�6�4���� ��"��[�o]>z�zτ�o����=rd 8"T���I�\�)��Qf�vU�|�e�����W�?Y��ݛ6s�$��W��:�yٳ`R�2s\��6_%_�ɉ�rP{���27Ʀ��d�lo�g�,�<��#�)�� ~x_�a�9c�E+t��' �h|�ݱ�֙k&HN�^�m�V�0f�����E��\�q���%ȓ���9yҘU�L������ k*�E�1��̢��L���`�� �-�^!�����ӥq�� (�>�VK�wNX�r��$I���@�����^�q��X�?d;@���4���'f��'D�u8z��L��I�����w�&����˼���`������m�j�E3���C�1�zG�BY"��q�m��c���^�՞�f%|}���>�z8�a��5�Z�C�/d��?d��{��:ܑѼ�a��1�\9�q�6&:e�C�F3o]��_ �a_���ܵ0S��Q&^re� ��H�r�����Th������:��߰w}\dpж 㩊c.���{j�m�Ju&�1��q��-й2�0_'^��LE�% �i�8��~��h� &����te��)�v�S4C7G�w(CQ�bn<��4@@�J���@�1��R0e3xyY�����{8��R���'�-�� �M"< �1�N) �rEX"n�V�s�p�1�ʍ�2��NbfIK'��ʺ�o�� �%��!�f�����9,���� ���?��Ǒ���S�`;]�1B ����R�����Ȫ�{l�N��0 ��� ��0A$� �{�^e��v����̎y��@�h_�ܾ�G�/�j�pR�WB,Et��q�s eh�h�ʁ���Ízg{ض�s ��"X���a�h�,$"0����Qf ���U�Ԟ�9��3!N �70Ҏ/0(t�#7X����+ <�Gt]��\��� ��J���v�(��b��,�؅L��;8qBo\L�<>�KB���Z�f�=A�ƜJ�x�B��>LP���D�`cJ��p��T���1|�XìE����� { // 初始化认证状态 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: 'qlylzn', chapterId: '65192089', novelTitle: '青楼娱乐指南', chapterTitle: '61 生化武器', 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 看小说网 版权所有