验证ui展示 - 主页

云科技验证UI

云DIY模板 4 次查看 17 次下载

第 1-100 行(共100行)
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
    <title>new-module</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        body {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0a0a0a;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .hexagon-bg {
            position: fixed;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(90deg, #000 21px, transparent 1%) center,
                linear-gradient(#000 21px, transparent 1%) center,
                rgba(0, 150, 255, 0.2);
            background-size: 22px 22px;
            animation: moveBackground 30s linear infinite;
        }

        @keyframes moveBackground {
            0% { background-position: 0 0; }
            100% { background-position: 22px 22px; }
        }

        .container {
            position: relative;
            width: 100%;
            max-width: 420px;
            padding: 20px;
            z-index: 1;
        }

        .card {
            position: relative;
            background: rgba(20, 20, 20, 0.9);
            border-radius: 15px;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                transparent,
                rgba(0, 150, 255, 0.3),
                transparent 30%
            );
            animation: rotate 4s linear infinite;
        }

        .card::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: #0a0a0a;
            border-radius: 12px;
            z-index: 1;
        }

        @keyframes rotate {
            100% { transform: rotate(360deg); }
        }

        .content {
            position: relative;
            z-index: 2;
            padding: 30px;
        }

        .title-container {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
第 101-200 行(共100行)

        .title {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                transparent,
                rgba(0, 150, 255, 0.8),
                transparent
            );
        }

        .input-group {
            margin-bottom: 30px;
            position: relative;
        }

        .input-group::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: rgba(0, 150, 255, 0.8);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        input {
            width: 100%;
            padding: 20px;
            padding-left: 25px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(0, 150, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            border-color: rgba(0, 150, 255, 0.8);
            box-shadow: 0 0 20px rgba(0, 150, 255, 0.2);
        }

        .verify-btn {
            width: 100%;
            padding: 20px;
            background: rgba(0, 150, 255, 0.1);
            border: none;
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .verify-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(0, 150, 255, 0.4),
                transparent
            );
            animation: btnShine 3s infinite;
        }

        @keyframes btnShine {
            100% { left: 200%; }
        }
第 201-300 行(共100行)

        .verify-btn:hover {
            background: rgba(0, 150, 255, 0.2);
            transform: translateY(-2px);
        }

        .notice {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 8px;
            padding: 20px;
            border: 1px solid rgba(0, 150, 255, 0.1);
            position: relative;
        }

        .notice::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 4px;
            height: 100%;
            background: rgba(0, 150, 255, 0.8);
            animation: pulse 2s infinite;
        }

        .notice h3 {
            color: rgba(0, 150, 255, 0.8);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .notice p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* 响应式布局 */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }

            .content {
                padding: 25px;
            }

            .title {
                font-size: 28px;
            }
        }

        @media screen and (max-height: 500px) and (orientation: landscape) {
            .container {
                max-width: 600px;
            }

            .content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                align-items: center;
            }

            .title-container {
                grid-column: 1 / -1;
                margin-bottom: 20px;
            }

            .verify-btn {
                margin-bottom: 0;
            }
        }
    </style>
</head>
<body>
    <div class="hexagon-bg"></div>
    
    <div class="container">
        <div class="card">
            <div class="content">
                <div class="title-container">
                    <h1 class="title">验证系统</h1>
                </div>

                <div class="input-group">
                    <input type="text" id="code" placeholder="请输入激活码" pattern="^[a-zA-Z0-9_-]{1,16}$">
                </div>

                <button class="verify-btn" onclick="Call_Verify(code.value)">
                    验证
                </button>

                <div class="notice">
                    <h3>系统公告</h3>
                    <p id="notice"></p>
                </div>
            </div>
        </div>
    </div>

第 301-309 行(共9行)
    <script>
        document.body.style.display = 'flex';
        
        function Call_Verify(text) {
            RuoLv.onButtonClick(0,text);
        }
    </script>
</body>
</html>

用户评论

0 条评论
暂无评论

成为第一个评论此应用的用户吧!

相关应用