首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >地址发布单页源码(最好看得一版)-6ke论坛

地址发布单页源码(最好看得一版)-6ke论坛

原创
作者头像
用户1287596
修改2024-10-07 15:14:31
修改2024-10-07 15:14:31
40400
代码可运行
举报
运行总次数:0
代码可运行

说明

  • 自动检测是否能够正常访问
  • 自动黑夜/白天模式,也可手动切换
  • 主要是页面好看
20240928133010977-image-106
20240928133010977-image-106
20240928163514336-image-108
20240928163514336-image-108
20240928133049904-image-107
20240928133049904-image-107
20240928124145228-image-105
20240928124145228-image-105

[hidecontent type="reply" desc="隐藏内容:评论后查看"]

代码语言:javascript
代码运行次数:0
运行
复制
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>6ke论坛-地址发布页,收藏我回家不迷路!</title>
    <meta name="description" content="6ke论坛-地址发布页,收藏我回家不迷路!">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
    <style>
        @font-face {
            font-family: 'HarmonyOS Sans SC';
            src: url('/diy/ziti/HarmonyOS_Sans_SC_Regular.woff2') format('woff2');
            font-weight: normal;
            font-style: normal;
        }
        :root {
            --primary-color: #3b82f6;
            --secondary-color: #60a5fa;
            --text-color: #1f2937;
            --card-background: rgba(255, 255, 255, 0.9);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --background-light: linear-gradient(-45deg, #e6f2ff, #fff0f5, #f0f7ff, #fff5e6);
            --background-dark: linear-gradient(-45deg, #1a202c, #2d3748, #4a5568, #2d3748);
        }
        .dark-mode {
            --primary-color: #60a5fa;
            --secondary-color: #3b82f6;
            --text-color: #e2e8f0;
            --card-background: rgba(26, 32, 44, 0.9);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: 'HarmonyOS Sans SC', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--background-light);
            background-size: 400% 400%;
            animation: gradientBG 15s ease infinite;
            overflow-x: hidden;
            font-size: 16px;
            transition: var(--transition);
        }
        body.dark-mode {
            background: var(--background-dark);
        }
        @keyframes gradientBG {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .wrapper {
            padding: 2rem;
            width: 100%;
            max-width: 600px;
            position: relative;
        }
        .main {
            background-color: var(--card-background);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        .main:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        ul {
            list-style-type: none;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: rgba(248, 250, 252, 0.8);
            border-radius: 10px;
            transition: var(--transition);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .dark-mode li {
            background-color: rgba(26, 32, 44, 0.8);
        }
        li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        li a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        li a:hover {
            color: var(--secondary-color);
        }
        li a i {
            margin-right: 0.5rem;
            font-size: 1.2em;
        }
        .notice {
            background-color: rgba(230, 242, 255, 0.8);
            border-left: 4px solid var(--primary-color);
            padding: 1rem;
            margin-top: 1rem;
            border-radius: 10px;
            transition: var(--transition);
        }
        .dark-mode .notice {
            background-color: rgba(44, 55, 72, 0.8);
        }
        .notice:hover {
            background-color: rgba(230, 242, 255, 1);
        }
        .dark-mode .notice:hover {
            background-color: rgba(44, 55, 72, 1);
        }
        .footer {
            margin-top: 2rem;
            text-align: center;
            color: var(--text-color);
            font-weight: 300;
            opacity: 0.8;
            transition: var(--transition);
        }
        .footer:hover {
            opacity: 1;
        }
        .bookmark-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background-color: var(--primary-color);
            color: white;
            text-align: center;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .bookmark-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .bookmark-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        .bookmark-btn:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        @keyframes ripple {
            0% { transform: scale(0, 0); opacity: 1; }
            20% { transform: scale(25, 25); opacity: 1; }
            100% { opacity: 0; transform: scale(40, 40); }
        }
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .bg-animation span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            animation: move 25s infinite linear;
        }
        .dark-mode .bg-animation span {
            background: rgba(255, 255, 255, 0.1);
        }
        .bg-animation span:nth-child(1) { top: 20%; left: 20%; animation-duration: 15s; }
        .bg-animation span:nth-child(2) { top: 60%; left: 80%; animation-duration: 17s; width: 40px; height: 40px; }
        .bg-animation span:nth-child(3) { top: 40%; left: 40%; animation-duration: 19s; }
        .bg-animation span:nth-child(4) { top: 80%; left: 10%; animation-duration: 21s; }
        @keyframes move {
            0% { transform: translateX(0) translateY(0) rotate(0); opacity: 1; border-radius: 0; }
            100% { transform: translateX(-1000px) translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
        }
        @media (max-width: 768px) {
            body {
                font-size: calc(14px + 0.390625vw);
            }
            .main {
                padding: 2rem;
            }
            h1 {
                font-size: 2rem;
            }
        }
        .status-badge {
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.8em;
            margin-left: 10px;
        }
        .status-normal {
            background-color: #4CAF50;
            color: white;
        }
        .status-error {
            background-color: #f44336;
            color: white;
        }
        .status-checking {
            background-color: #ffeb3b;
            color: black;
        }
        li.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        li.disabled a {
            pointer-events: none;
        }
        .mode-toggle {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            z-index: 10;
        }
        .mode-toggle:hover {
            color: var(--primary-color);
        }
    </style>
</head>
<body>
    <div class="bg-animation">
        <span></span>
        <span></span>
        <span></span>
        <span></span>
    </div>
    <div class="wrapper">
        <button class="mode-toggle" id="mode-toggle">
            <i class="fas fa-moon"></i>
        </button>
        <main class="main">
            <h1>6ke论坛-地址发布页</h1>
            <button class="bookmark-btn">
                <i class="fas fa-bookmark"></i> Ctrl+D 收藏本页到浏览器收藏夹
            </button>
            <ul id="url-list">
                <li data-url="https://6.ke/">
                    <span>6ke论坛(主)</span>
                    <a href="https://6.ke/" target="_blank">
                        <i class="fas fa-external-link-alt"></i> https://6.ke
                    </a>
                    <span class="status-badge status-checking">检测中...</span>
                </li>
                <li data-url="https://6ke.li/">
                    <span>6ke论坛(备)</span>
                    <a href="https://6ke.li/" target="_blank">
                        <i class="fas fa-external-link-alt"></i> https://6ke.li
                    </a>
                    <span class="status-badge status-checking">检测中...</span>
                </li>
                 <li data-url="https://baidu.com/">
                    <span>百度搜索</span>
                    <a href="https://baidu.com/" target="_blank">
                        <i class="fas fa-external-link-alt"></i> https://baidu.com
                    </a>
                    <span class="status-badge status-checking">检测中...</span>
                </li>
                <li data-url="https://cn.bing.com/">
                    <span>bing</span>
                    <a href="https://cn.bing.com/" target="_blank">
                        <i class="fas fa-external-link-alt"></i> https://cn.bing.com
                    </a>
                    <span class="status-badge status-checking">检测中...</span>
                </li>
            </ul>
            <div class="notice">
                <i class="fas fa-info-circle"></i> 部分中国网络屏蔽网址,打不开请挂梯子🪜访问!
            </div>
        </main>
        <footer class="footer">
            <p>&copy; 2024 6ke论坛. 保留所有权利。</p>
        </footer>
    </div>

<script>
        function checkUrl(url, li) {
            return new Promise((resolve) => {
                const img = new Image();
                let isResolved = false;

                const timeoutId = setTimeout(() => {
                    if (!isResolved) {
                        updateUrlStatus(li, false);
                        isResolved = true;
                        resolve();
                    }
                }, 5000); // 5秒超时

                img.onload = function() {
                    if (!isResolved) {
                        clearTimeout(timeoutId);
                        updateUrlStatus(li, true);
                        isResolved = true;
                        resolve();
                    }
                };

                img.onerror = function() {
                    if (!isResolved) {
                        clearTimeout(timeoutId);
                        updateUrlStatus(li, false);
                        isResolved = true;
                        resolve();
                    }
                };

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

        function updateUrlStatus(li, isAccessible) {
            const statusBadge = li.querySelector('.status-badge');
            li.classList.remove('disabled');
            if (isAccessible) {
                statusBadge.textContent = '正常';
                statusBadge.className = 'status-badge status-normal';
            } else {
                li.classList.add('disabled');
                statusBadge.textContent = '无法访问';
                statusBadge.className = 'status-badge status-error';
            }
        }

        function checkAllUrls() {
            const urlList = document.getElementById('url-list');
            const listItems = urlList.querySelectorAll('li');

            listItems.forEach(li => {
                const url = li.dataset.url;
                const statusBadge = li.querySelector('.status-badge');
                statusBadge.textContent = '检测中...';
                statusBadge.className = 'status-badge status-checking';
                checkUrl(url, li);
            });
        }

        // 初始检查
        checkAllUrls();

        // 每5分钟检查一次
        setInterval(checkAllUrls, 5 * 60 * 1000);

        // 暗黑模式切换代码保持不变
        const modeToggle = document.getElementById('mode-toggle');
        const body = document.body;
        const icon = modeToggle.querySelector('i');

        function setDarkMode(isDark) {
            if (isDark) {
                body.classList.add('dark-mode');
                icon.classList.remove('fa-moon');
                icon.classList.add('fa-sun');
                localStorage.setItem('darkMode', 'enabled');
            } else {
                body.classList.remove('dark-mode');
                icon.classList.remove('fa-sun');
                icon.classList.add('fa-moon');
                localStorage.setItem('darkMode', 'disabled');
            }
        }

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

        function initializeDarkMode() {
            const userPreference = localStorage.getItem('darkMode');
            if (userPreference === 'enabled') {
                setDarkMode(true);
            } else if (userPreference === 'disabled') {
                setDarkMode(false);
            } else {
                setDarkMode(checkSystemPreference());
            }
        }

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

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

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

        // 收藏按钮功能
        document.querySelector('.bookmark-btn').addEventListener('click', function(e) {
            e.preventDefault();
            if (window.sidebar && window.sidebar.addPanel) { // Mozilla Firefox Bookmark
                window.sidebar.addPanel(document.title, window.location.href, '');
            } else if (window.external && ('AddFavorite' in window.external)) { // IE Favorite
                window.external.AddFavorite(location.href, document.title);
            } else if (window.opera && window.print) { // Opera Hotlist
                this.title = document.title;
                return true;
            } else { // webkit - safari/chrome
                alert('请使用' + (navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Command/Cmd' : 'CTRL') + ' + D 添加到收藏夹。');
            }
        });
    </script>
</body>
</html>

[/hidecontent]

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 说明
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档