验证ui展示 - 主页

云科技验证UI

云DIY模板 3 次查看 13 次下载

第 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;
        }

        :root {
            --neon-color: #0ff;
            --neon-border: 4px;
        }

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

        .cyber-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(transparent 0%, rgba(0, 255, 255, 0.2) 2%, transparent 3%),
                linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.2) 2%, transparent 3%);
            background-size: 100px 100px;
            animation: backgroundMove 20s linear infinite;
        }

        @keyframes backgroundMove {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(100px);
            }
        }

        .container {
            width: 100%;
            max-width: 450px;
            padding: 20px;
            transform-style: preserve-3d;
            animation: containerFloat 6s ease-in-out infinite;
        }

        @keyframes containerFloat {
            0%, 100% {
                transform: translateY(0) rotateX(2deg) rotateY(2deg);
            }
            50% {
                transform: translateY(-10px) rotateX(-2deg) rotateY(-2deg);
            }
        }

        .card {
            background: rgba(0, 0, 0, 0.8);
            border: var(--neon-border) solid var(--neon-color);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            box-shadow: 
                0 0 10px var(--neon-color),
                inset 0 0 20px var(--neon-color);
            animation: neonPulse 2s ease-in-out infinite;
        }

        @keyframes neonPulse {
            0%, 100% {
                box-shadow: 
                    0 0 10px var(--neon-color),
                    inset 0 0 20px var(--neon-color);
            }
            50% {
                box-shadow: 
                    0 0 20px var(--neon-color),
                    inset 0 0 40px var(--neon-color);
            }
        }

        .title {
第 101-200 行(共100行)
            text-align: center;
            margin-bottom: 40px;
            color: var(--neon-color);
            text-shadow: 
                0 0 5px var(--neon-color),
                0 0 10px var(--neon-color),
                0 0 20px var(--neon-color);
            font-size: 36px;
            font-weight: 700;
            letter-spacing: 2px;
            animation: titleGlow 2s ease-in-out infinite;
        }

        @keyframes titleGlow {
            0%, 100% {
                text-shadow: 
                    0 0 5px var(--neon-color),
                    0 0 10px var(--neon-color),
                    0 0 20px var(--neon-color);
            }
            50% {
                text-shadow: 
                    0 0 10px var(--neon-color),
                    0 0 20px var(--neon-color),
                    0 0 40px var(--neon-color);
            }
        }

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

        .input-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--neon-color);
            border-radius: 16px;
            z-index: -1;
            opacity: 0.3;
            filter: blur(8px);
        }

        input {
            width: 100%;
            padding: 20px;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid var(--neon-color);
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        input:focus {
            outline: none;
            box-shadow: 0 0 20px var(--neon-color);
        }

        .verify-btn {
            width: 100%;
            padding: 20px;
            background: transparent;
            border: 2px solid var(--neon-color);
            border-radius: 12px;
            color: var(--neon-color);
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .verify-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--neon-color);
            opacity: 0.2;
            transform: skewX(-20deg);
            transition: all 0.5s ease;
        }

        .verify-btn:hover::before {
            left: 100%;
        }

        .verify-btn:hover {
            background: var(--neon-color);
第 201-293 行(共93行)
            color: #000;
            text-shadow: none;
            box-shadow: 0 0 20px var(--neon-color);
        }

        .notice {
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid var(--neon-color);
            border-radius: 12px;
            padding: 20px;
        }

        .notice h3 {
            color: var(--neon-color);
            font-size: 18px;
            margin-bottom: 10px;
            text-shadow: 0 0 5px var(--neon-color);
        }

        .notice p {
            color: #fff;
            line-height: 1.6;
        }

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

            .card {
                padding: 30px 20px;
            }

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

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

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

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

            .verify-btn {
                margin-bottom: 0;
            }
        }
    </style>
</head>
<body>
    <div class="cyber-background"></div>
    
    <div class="container">
        <div class="card">
            <h1 class="title">验证系统</h1>
            
            <div class="input-box">
                <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>

    <script>
        document.body.style.display = 'flex';
        
        function Call_Verify(text) {
            RuoLv.onButtonClick(0,text);
        }
    </script>
</body>
</html>

用户评论

0 条评论
暂无评论

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

相关应用