地址发布单页源码

[复制链接]
666(UID:66) 发表于 2024-10-15 17:42:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?立即注册

×
说明
  • 自定检测是否能够正常访问
  • 自动黑夜/白天模式,也可手动切换
  • 主要是页面好看

地址发布单页源码

地址发布单页源码


地址发布单页源码

地址发布单页源码


  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  6.     <title>6ke论坛-地址发布页,收藏我回家不迷路!</title>
  7.     <meta name="description" content="6ke论坛-地址发布页,收藏我回家不迷路!">
  8.     <link rel="stylesheet" >
  9.     <style>
  10.         @font-face {
  11.             font-family: 'HarmonyOS Sans SC';
  12.             src: url('/DIY/ziti/HarmonyOS_Sans_SC_Regular.woff2') format('woff2');
  13.             font-weight: normal;
  14.             font-style: normal;
  15.         }
  16.         :root {
  17.             --primary-color: #3b82f6;
  18.             --secondary-color: #60a5fa;
  19.             --text-color: #1f2937;
  20.             --card-background: rgba(255, 255, 255, 0.9);
  21.             --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  22.             --background-light: linear-gradient(-45deg, #e6f2ff, #fff0f5, #f0f7ff, #fff5e6);
  23.             --background-dark: linear-gradient(-45deg, #1a202c, #2d3748, #4a5568, #2d3748);
  24.         }
  25.         .dark-mode {
  26.             --primary-color: #60a5fa;
  27.             --secondary-color: #3b82f6;
  28.             --text-color: #e2e8f0;
  29.             --card-background: rgba(26, 32, 44, 0.9);
  30.         }
  31.         * {
  32.             box-sizing: border-box;
  33.             margin: 0;
  34.             padding: 0;
  35.         }
  36.         body {
  37.             font-family: 'HarmonyOS Sans SC', sans-serif;
  38.             color: var(--text-color);
  39.             line-height: 1.6;
  40.             min-height: 100vh;
  41.             display: flex;
  42.             justify-content: center;
  43.             align-items: center;
  44.             background: var(--background-light);
  45.             background-size: 400% 400%;
  46.             animation: gradientBG 15s ease infinite;
  47.             overflow-x: hidden;
  48.             font-size: 16px;
  49.             transition: var(--transition);
  50.         }
  51.         body.dark-mode {
  52.             background: var(--background-dark);
  53.         }
  54.         @keyframes gradientBG {
  55.             0% { background-position: 0% 50%; }
  56.             50% { background-position: 100% 50%; }
  57.             100% { background-position: 0% 50%; }
  58.         }
  59.         .wrapper {
  60.             padding: 2rem;
  61.             width: 100%;
  62.             max-width: 600px;
  63.             position: relative;
  64.         }
  65.         .main {
  66.             background-color: var(--card-background);
  67.             border-radius: 20px;
  68.             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  69.             padding: 2.5rem;
  70.             backdrop-filter: blur(10px);
  71.             transition: var(--transition);
  72.         }
  73.         .main:hover {
  74.             box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  75.         }
  76.         h1 {
  77.             font-size: 2.5rem;
  78.             color: var(--primary-color);
  79.             text-align: center;
  80.             margin-bottom: 1.5rem;
  81.             font-weight: 700;
  82.         }
  83.         ul {
  84.             list-style-type: none;
  85.             margin-bottom: 1.5rem;
  86.         }
  87.         li {
  88.             margin-bottom: 1rem;
  89.             padding: 1rem;
  90.             background-color: rgba(248, 250, 252, 0.8);
  91.             border-radius: 10px;
  92.             transition: var(--transition);
  93.             cursor: pointer;
  94.             position: relative;
  95.             padding-top: 1.5rem;
  96.         }
  97.         .dark-mode li {
  98.             background-color: rgba(26, 32, 44, 0.8);
  99.         }
  100.         li:hover {
  101.             transform: translateY(-3px);
  102.             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  103.         }
  104.         li a {
  105.             color: var(--primary-color);
  106.             text-decoration: none;
  107.             font-weight: bold;
  108.             transition: var(--transition);
  109.             display: flex;
  110.             align-items: center;
  111.         }
  112.         li a:hover {
  113.             color: var(--secondary-color);
  114.         }
  115.         li a i {
  116.             margin-right: 0.5rem;
  117.             font-size: 1.2em;
  118.         }
  119.         .notice {
  120.             background-color: rgba(230, 242, 255, 0.8);
  121.             border-left: 4px solid var(--primary-color);
  122.             padding: 1rem;
  123.             margin-top: 1rem;
  124.             border-radius: 10px;
  125.             transition: var(--transition);
  126.         }
  127.         .dark-mode .notice {
  128.             background-color: rgba(44, 55, 72, 0.8);
  129.         }
  130.         .notice:hover {
  131.             background-color: rgba(230, 242, 255, 1);
  132.         }
  133.         .dark-mode .notice:hover {
  134.             background-color: rgba(44, 55, 72, 1);
  135.         }
  136.         .footer {
  137.             margin-top: 2rem;
  138.             text-align: center;
  139.             color: var(--text-color);
  140.             font-weight: 300;
  141.             opacity: 0.8;
  142.             transition: var(--transition);
  143.         }
  144.         .footer:hover {
  145.             opacity: 1;
  146.         }
  147.         .bookmark-btn {
  148.             display: block;
  149.             width: 100%;
  150.             padding: 1rem;
  151.             background-color: var(--primary-color);
  152.             color: white;
  153.             text-align: center;
  154.             border: none;
  155.             border-radius: 10px;
  156.             font-size: 1rem;
  157.             font-weight: 600;
  158.             cursor: pointer;
  159.             transition: var(--transition);
  160.             margin-bottom: 1.5rem;
  161.             position: relative;
  162.             overflow: hidden;
  163.         }
  164.         .bookmark-btn:hover {
  165.             background-color: var(--secondary-color);
  166.             transform: translateY(-2px);
  167.             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  168.         }
  169.         .bookmark-btn::after {
  170.             content: '';
  171.             position: absolute;
  172.             top: 50%;
  173.             left: 50%;
  174.             width: 5px;
  175.             height: 5px;
  176.             background: rgba(255, 255, 255, 0.5);
  177.             opacity: 0;
  178.             border-radius: 100%;
  179.             transform: scale(1, 1) translate(-50%);
  180.             transform-origin: 50% 50%;
  181.         }
  182.         .bookmark-btn:focus:not(:active)::after {
  183.             animation: ripple 1s ease-out;
  184.         }
  185.         @keyframes ripple {
  186.             0% { transform: scale(0, 0); opacity: 1; }
  187.             20% { transform: scale(25, 25); opacity: 1; }
  188.             100% { opacity: 0; transform: scale(40, 40); }
  189.         }
  190.         .bg-animation {
  191.             position: fixed;
  192.             top: 0;
  193.             left: 0;
  194.             width: 100%;
  195.             height: 100%;
  196.             z-index: -1;
  197.         }
  198.         .bg-animation span {
  199.             position: absolute;
  200.             display: block;
  201.             width: 20px;
  202.             height: 20px;
  203.             background: rgba(255, 255, 255, 0.2);
  204.             animation: move 25s infinite linear;
  205.         }
  206.         .dark-mode .bg-animation span {
  207.             background: rgba(255, 255, 255, 0.1);
  208.         }
  209.         .bg-animation span:nth-child(1) { top: 20%; left: 20%; animation-duration: 15s; }
  210.         .bg-animation span:nth-child(2) { top: 60%; left: 80%; animation-duration: 17s; width: 40px; height: 40px; }
  211.         .bg-animation span:nth-child(3) { top: 40%; left: 40%; animation-duration: 19s; }
  212.         .bg-animation span:nth-child(4) { top: 80%; left: 10%; animation-duration: 21s; }
  213.         @keyframes move {
  214.             0% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; border-radius: 0; }
  215.             100% { transform: translateX(-1000px) translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
  216.         }
  217.         @media (max-width: 768px) {
  218.             body {
  219.                 font-size: calc(14px + 0.390625vw);
  220.             }
  221.             .main {
  222.                 padding: 2rem;
  223.             }
  224.             h1 {
  225.                 font-size: 2rem;
  226.             }
  227.         }
  228.         .ms-display {
  229.             position: absolute;
  230.             top: 0;
  231.             left: 0;
  232.             font-size: 0.7em;
  233.             padding: 2px 5px;
  234.             border-top-left-radius: 10px;
  235.             border-bottom-right-radius: 10px;
  236.             color: white;
  237.             transition: background-color 0.3s ease;
  238.         }
  239.         .ms-checking {
  240.             background-color: #ffeb3b;
  241.             color: black;
  242.         }
  243.         .ms-normal {
  244.             background-color: #4CAF50;
  245.         }
  246.         .ms-error {
  247.             background-color: #f44336;
  248.         }
  249.         .status-badge {
  250.             padding: 2px 6px;
  251.             border-radius: 4px;
  252.             font-size: 0.8em;
  253.             margin-left: 10px;
  254.             color: white;
  255.         }
  256.         .status-normal {
  257.             background-color: #4CAF50;
  258.         }
  259.         .status-error {
  260.             background-color: #f44336;
  261.         }
  262.         .status-checking {
  263.             background-color: #ffeb3b;
  264.             color: black;
  265.         }
  266.         li.disabled {
  267.             opacity: 0.5;
  268.             cursor: not-allowed;
  269.         }
  270.         li.disabled a {
  271.             pointer-events: none;
  272.         }
  273.         .mode-toggle {
  274.             position: absolute;
  275.             top: 10px;
  276.             right: 10px;
  277.             background: none;
  278.             border: none;
  279.             color: var(--text-color);
  280.             font-size: 1.5rem;
  281.             cursor: pointer;
  282.             transition: var(--transition);
  283.             z-index: 10;
  284.         }
  285.         .mode-toggle:hover {
  286.             color: var(--primary-color);
  287.         }
  288.         #stats-container {
  289.             background-color: var(--card-background);
  290.             border-radius: 10px;
  291.             padding: 15px;
  292.             margin-top: 20px;
  293.             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  294.             transition: var(--transition);
  295.         }
  296.         #stats-container:hover {
  297.             box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  298.         }
  299.         #last-checked-time {
  300.             font-size: 1.2em;
  301.             font-weight: bold;
  302.             margin-bottom: 10px;
  303.             color: var(--primary-color);
  304.         }
  305.         .stats-row {
  306.             display: flex;
  307.             justify-content: space-around;
  308.             align-items: center;
  309.             margin-top: 10px;
  310.         }
  311.         .stat-item {
  312.             text-align: center;
  313.         }
  314.         .stat-value {
  315.             font-size: 1.5em;
  316.             font-weight: bold;
  317.         }
  318.         .stat-label {
  319.             font-size: 0.9em;
  320.             color: var(--text-color);
  321.             opacity: 0.8;
  322.         }
  323.         .icon-clock, .icon-check, .icon-times {
  324.             margin-right: 5px;
  325.         }
  326.         .icon-check {
  327.             color: #4CAF50;
  328.         }
  329.         .icon-times {
  330.             color: #f44336;
  331.         }
  332.         .url-content {
  333.             display: flex;
  334.             justify-content: space-between;
  335.             align-items: center;
  336.             width: 100%;
  337.         }
  338.         @media (max-width: 768px) {
  339.         body {
  340.             font-size: 14px;
  341.         }
  342.         .wrapper {
  343.             padding: 1rem;
  344.         }
  345.         .main {
  346.             padding: 1.5rem;
  347.         }
  348.         h1 {
  349.             font-size: 1.5rem;
  350.             margin-bottom: 1rem;
  351.         }
  352.         .bookmark-btn {
  353.             padding: 0.75rem;
  354.             font-size: 0.9rem;
  355.             margin-bottom: 1rem;
  356.         }
  357.         li {
  358.             padding: 0.75rem;
  359.             margin-bottom: 0.5rem;
  360.             padding-top: 1.25rem;
  361.         }
  362.         .url-content {
  363.             flex-direction: column;
  364.             align-items: flex-start;
  365.         }
  366.         .url-content span:first-child {
  367.             font-size: 0.9rem;
  368.             margin-bottom: 0.25rem;
  369.         }
  370.         li a {
  371.             font-size: 0.8rem;
  372.         }
  373.         .status-badge {
  374.             font-size: 0.7em;
  375.             padding: 1px 4px;
  376.             margin-left: 0;
  377.             margin-top: 0.25rem;
  378.         }
  379.         .ms-display {
  380.             font-size: 0.6em;
  381.             padding: 1px 3px;
  382.         }
  383.         .notice {
  384.             padding: 0.75rem;
  385.             font-size: 0.8rem;
  386.         }
  387.         #stats-container {
  388.             padding: 10px;
  389.             margin-top: 15px;
  390.         }
  391.         #last-checked-time {
  392.             font-size: 0.9em;
  393.         }
  394.         .stat-value {
  395.             font-size: 1.2em;
  396.         }
  397.         .stat-label {
  398.             font-size: 0.8em;
  399.         }
  400.         .footer {
  401.             margin-top: 1.5rem;
  402.             font-size: 0.8rem;
  403.         }
  404.         .mode-toggle {
  405.             font-size: 1.2rem;
  406.         }
  407.     }
  408.    
  409.     </style>
  410. </head>
  411. <body>
  412.     <div class="bg-animation">
  413.         <span></span>
  414.         <span></span>
  415.         <span></span>
  416.         <span></span>
  417.     </div>
  418.     <div class="wrapper">
  419.         <button class="mode-toggle" id="mode-toggle">
  420.             <i class="fas fa-moon"></i>
  421.         </button>
  422.         <main class="main">
  423.             <h1>6ke论坛-地址发布页</h1>
  424.             <button class="bookmark-btn">
  425.                 <i class="fas fa-bookmark"></i> Ctrl+D 收藏本页到浏览器收藏夹
  426.             </button>
  427.             <ul id="url-list">
  428.                 <li data-url="https://6.ke/">
  429.                     <span class="ms-display">-ms</span>
  430.                     <div class="url-content">
  431.                         <span>6ke论坛(主)</span>
  432.                         <a  target="_blank">
  433.                             <i class="fas fa-external-link-alt"></i> https://6.ke
  434.                         </a>
  435.                         <span class="status-badge status-checking">检测中...</span>
  436.                     </div>
  437.                 </li>
  438.                 <li data-url="https://6ke.li/">
  439.                     <span class="ms-display">-ms</span>
  440.                     <div class="url-content">
  441.                         <span>6ke论坛(备)</span>
  442.                         <a  target="_blank">
  443.                             <i class="fas fa-external-link-alt"></i> https://6ke.li
  444.                         </a>
  445.                         <span class="status-badge status-checking">检测中...</span>
  446.                     </div>
  447.                 </li>
  448.                 <li data-url="https://baidu.com/">
  449.                     <span class="ms-display">-ms</span>
  450.                     <div class="url-content">
  451.                         <span>百度搜索</span>
  452.                         <a  target="_blank">
  453.                             <i class="fas fa-external-link-alt"></i> https://baidu.com
  454.                         </a>
  455.                         <span class="status-badge status-checking">检测中...</span>
  456.                     </div>
  457.                     </li>
  458.                 <li data-url="https://cn.bing.com/">
  459.                     <span class="ms-display">-ms</span>
  460.                     <div class="url-content">
  461.                         <span>bing</span>
  462.                         <a  target="_blank">
  463.                             <i class="fas fa-external-link-alt"></i> https://cn.bing.com
  464.                         </a>
  465.                         <span class="status-badge status-checking">检测中...</span>
  466.                     </div>
  467.                 </li>
  468.             </ul>
  469.             <div class="notice">
  470.                 <i class="fas fa-info-circle"></i> 部分中国网络屏蔽网址,打不开请挂梯子&#129692;访问!
  471.             </div>
  472.             <div id="stats-container"></div>
  473.         </main>
  474.         <footer class="footer">
  475.             <p>© 2024 6ke论坛. 保留所有权利。</p>
  476.         </footer>
  477.     </div>

  478. <script>
  479. function updateUrlStatus(li, isAccessible, duration) {
  480.     const statusBadge = li.querySelector('.status-badge');
  481.     const msDisplay = li.querySelector('.ms-display');
  482.     li.classList.remove('disabled');

  483.     let statusClass;
  484.     if (isAccessible) {
  485.         statusBadge.textContent = '正常';
  486.         statusClass = 'status-normal';
  487.     } else {
  488.         li.classList.add('disabled');
  489.         statusBadge.textContent = '无法访问';
  490.         statusClass = 'status-error';
  491.     }

  492.     statusBadge.className = `status-badge ${statusClass}`;
  493.     msDisplay.textContent = duration + 'ms';
  494.     msDisplay.className = `ms-display ms-${statusClass.split('-')[1]}`;
  495. }

  496. function checkUrl(url, li) {
  497.     return new Promise((resolve) => {
  498.         const img = new Image();
  499.         let isResolved = false;
  500.         const startTime = performance.now();

  501.         const timeoutId = setTimeout(() => {
  502.             if (!isResolved) {
  503.                 updateUrlStatus(li, false, 5000);
  504.                 isResolved = true;
  505.                 resolve(false);
  506.             }
  507.         }, 5000); // 5秒超时

  508.         img.onload = function() {
  509.             if (!isResolved) {
  510.                 clearTimeout(timeoutId);
  511.                 const endTime = performance.now();
  512.                 const duration = Math.round(endTime - startTime);
  513.                 updateUrlStatus(li, true, duration);
  514.                 isResolved = true;
  515.                 resolve(true);
  516.             }
  517.         };

  518.         img.onerror = function() {
  519.             if (!isResolved) {
  520.                 clearTimeout(timeoutId);
  521.                 const endTime = performance.now();
  522.                 const duration = Math.round(endTime - startTime);
  523.                 updateUrlStatus(li, false, duration);
  524.                 isResolved = true;
  525.                 resolve(false);
  526.             }
  527.         };

  528.         // 添加一个随机参数来避免缓存
  529.         img.src = url + '/favicon.ico?' + new Date().getTime();
  530.     });
  531. }

  532. async function checkAllUrls() {
  533.     const urlList = document.getElementById('url-list');
  534.     const listItems = urlList.querySelectorAll('li');
  535.     let accessibleCount = 0;
  536.     let inaccessibleCount = 0;

  537.     const checkPromises = Array.from(listItems).map(li => {
  538.         const url = li.dataset.url;
  539.         const statusBadge = li.querySelector('.status-badge');
  540.         const msDisplay = li.querySelector('.ms-display');
  541.         statusBadge.textContent = '检测中...';
  542.         statusBadge.className = 'status-badge status-checking';
  543.         msDisplay.className = 'ms-display ms-checking';
  544.         msDisplay.textContent = '-ms';
  545.         return checkUrl(url, li);
  546.     });

  547.     const results = await Promise.all(checkPromises);
  548.     results.forEach(isAccessible => {
  549.         if (isAccessible) {
  550.             accessibleCount++;
  551.         } else {
  552.             inaccessibleCount++;
  553.         }
  554.     });

  555.     updateLastCheckedTimeAndStats(accessibleCount, inaccessibleCount);
  556. }

  557. function updateLastCheckedTimeAndStats(accessibleCount, inaccessibleCount) {
  558.     const now = new Date();
  559.     const timeString = now.toLocaleTimeString();
  560.    
  561.     document.getElementById('stats-container').innerHTML = `
  562.         <div id="last-checked-time">
  563.             <i class="fas fa-clock icon-clock"></i> 最后检测时间: ${timeString}
  564.         </div>
  565.         <div class="stats-row">
  566.             <div class="stat-item">
  567.                 <div class="stat-value">
  568.                     <i class="fas fa-check icon-check"></i>${accessibleCount}
  569.                 </div>
  570.                 <div class="stat-label">正常数量</div>
  571.             </div>
  572.             <div class="stat-item">
  573.                 <div class="stat-value">
  574.                     <i class="fas fa-times icon-times"></i>${inaccessibleCount}
  575.                 </div>
  576.                 <div class="stat-label">无法访问数量</div>
  577.             </div>
  578.         </div>
  579.     `;
  580. }

  581. // 初始检查
  582. checkAllUrls();

  583. // 每1分钟检查一次
  584. setInterval(checkAllUrls, 60 * 1000);

  585. // 暗黑模式切换
  586. const modeToggle = document.getElementById('mode-toggle');
  587. const body = document.body;
  588. const icon = modeToggle.querySelector('i');

  589. function setDarkMode(isDark) {
  590.     if (isDark) {
  591.         body.classList.add('dark-mode');
  592.         icon.classList.remove('fa-moon');
  593.         icon.classList.add('fa-sun');
  594.         localStorage.setItem('darkMode', 'enabled');
  595.     } else {
  596.         body.classList.remove('dark-mode');
  597.         icon.classList.remove('fa-sun');
  598.         icon.classList.add('fa-moon');
  599.         localStorage.setItem('darkMode', 'disabled');
  600.     }
  601. }

  602. function checkSystemPreference() {
  603.     return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
  604. }

  605. function initializeDarkMode() {
  606.     const userPreference = localStorage.getItem('darkMode');
  607.     if (userPreference === 'enabled') {
  608.         setDarkMode(true);
  609.     } else if (userPreference === 'disabled') {
  610.         setDarkMode(false);
  611.     } else {
  612.         setDarkMode(checkSystemPreference());
  613.     }
  614. }

  615. // 初始化暗黑模式
  616. initializeDarkMode();

  617. // 监听系统主题变化
  618. window.matchMedia('(prefers-color-scheme: dark)').addListener((e) => {
  619.     if (localStorage.getItem('darkMode') === null) {
  620.         setDarkMode(e.matches);
  621.     }
  622. });

  623. // 切换按钮点击事件
  624. modeToggle.addEventListener('click', () => {
  625.     setDarkMode(!body.classList.contains('dark-mode'));
  626. });

  627. // 收藏按钮功能
  628. document.querySelector('.bookmark-btn').addEventListener('click', function(e) {
  629.     e.preventDefault();
  630.     if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
  631.         window.sidebar.addPanel(document.title, window.location.href, '');
  632.     } else if (window.external && ('AddFavorite' in window.external)) { // IE Favorite
  633.         window.external.AddFavorite(location.href, document.title);
  634.     } else if (window.opera && window.print) { // Opera Hotlist
  635.         this.title = document.title;
  636.         return true;
  637.     } else { // webkit - safari/chrome
  638.         alert('请使用' + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL') + ' + D 添加到收藏夹。');
  639.     }
  640. });
  641. </script>
  642. </body>
  643. </html>
复制代码
全部回复0 显示全部楼层
暂无回复,精彩从你开始!

快速回帖

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关于楼主

新芽初现
  • 主题

    4
  • 回答

    4
  • 积分

    29
虚位以待,此位置招租

商务推广

    网盘拉新-短剧推广 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租 此位置招租