分享一款简洁的跳转单页源码

跳转页面源码

今天在整理文件的时候发现之前用的跳转页面源码!

感觉页面清新!简单就分享出来了

<!DOCTYPE html>
<html lang="zh-CN">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport"
        content="width=device-width, user-scalable=no, initial-scale=1.0, shrink-to-fit=no, viewport-fit=cover">
    <title>跳转中...</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html,
        body {
            height: 100%;
            color: #fff;
            font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
            text-align: center;
        }

        a {
            color: #fff;
            text-decoration: none;
            font-size: 14px;
        }

        body::before {
            content: "";
            pointer-events: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #ebebeb url(https://p5.qhimg.com/bdr/__85/t013d9cd99447916285.jpg) no-repeat;
            background-size: 100% 100%;
            background-position: center;
            z-index: -1;
        }

        @media (max-width: 768px) {
            body::before {
                background-size: auto 100%;

            }
        }

        body {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        h2 {
            font-size: 60px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        p {
            font-size: 18px;
            margin-bottom: 30px;
        }
    </style>
</head>

<body>
    <div>
        <h2>dao.8kn.cn</h2>
        <p>请使用上方域名访问,<strong>3</strong> 秒后跳转</p>
        <a href="https://beian.miit.gov.cn" target="_blank" rel="noopener noreferrer">新ICP备2021000234号-1</a>
    </div>
    <script>
        let time = 3
        let timer = setInterval(() => {
            time--
            document.querySelector("strong").innerHTML = time
            if (time <= 0) {
                window.location.href = 'https://dao.8kn.cn'
                clearInterval(timer)
            }
        }, 1000);
    </script>
</body>

</html>
© 版权声明
THE END
------本页内容已结束,喜欢请分享------
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情图片

    暂无评论内容