验证ui展示 - 主页

云科技验证UI

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

第 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: #000;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            overflow: hidden;
        }

        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(62, 184, 255, 0.2), transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(255, 82, 182, 0.2), transparent 40%);
            z-index: -1;
        }

        .grid {
            position: fixed;
            width: 200%;
            height: 200%;
            top: -50%;
            left: -50%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 30px 30px;
            transform: perspective(500px) rotateX(60deg);
            animation: grid 20s linear infinite;
            z-index: -1;
        }

        @keyframes grid {
            0% {
                transform: perspective(500px) rotateX(60deg) translateY(0);
            }
            100% {
                transform: perspective(500px) rotateX(60deg) translateY(30px);
            }
        }

        .modal {
            width: 95%;
            max-width: 480px;
            background: rgba(20, 20, 20, 0.8);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            position: relative;
        }

        .glow {
            position: absolute;
            width: 50%;
            height: 150%;
            background: linear-gradient(90deg, 
                transparent,
                rgba(62, 184, 255, 0.2),
                rgba(255, 82, 182, 0.2),
                transparent
            );
            top: -25%;
            left: -25%;
            transform: rotate(35deg);
            animation: glow 3s ease-in-out infinite;
            filter: blur(20px);
        }

        @keyframes glow {
            0% { transform: rotate(35deg) translateX(-100%); }
            100% { transform: rotate(35deg) translateX(400%); }
        }

        .content {
第 101-200 行(共100行)
            padding: 40px;
            position: relative;
            z-index: 1;
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .title {
            font-size: 2.5em;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #3eb8ff, #ff52b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .input-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(90deg, #3eb8ff, #ff52b6);
            border-radius: 15px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .input-container:focus-within::before {
            opacity: 1;
        }

        input {
            width: 100%;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s;
        }

        input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.1);
        }

        .buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

        .btn {
            padding: 18px;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.05);
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, #3eb8ff, #ff52b6);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .btn:hover::before {
            opacity: 1;
        }
第 201-300 行(共100行)

        .btn span {
            position: relative;
            z-index: 1;
        }

        .notice {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .notice h3 {
            color: #fff;
            font-size: 1.2em;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #3eb8ff, #ff52b6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        /* 平板适配 */
        @media screen and (min-width: 768px) and (max-width: 1024px) {
            .modal {
                max-width: 80%;
                min-height: 80vh;
            }
            
            .content {
                padding: 30px;
            }
            
            .title {
                font-size: 2.2em;
            }
        }

        /* 手机横屏适配 */
        @media screen and (max-height: 500px) and (orientation: landscape) {
            .modal {
                max-width: 85%;
                height: 90vh;
                display: flex;
            }
            
            .content {
                padding: 20px 30px;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 20px;
                align-items: center;
            }
            
            .header {
                grid-column: 1 / -1;
                margin-bottom: 20px;
            }
            
            .title {
                font-size: 1.8em;
            }
            
            .input-container {
                margin-bottom: 0;
            }
            
            .buttons {
                margin-bottom: 0;
            }
            
            input {
                padding: 15px;
            }
            
            .btn {
                padding: 12px;
            }
            
            .notice {
                padding: 15px;
            }
            
            .notice h3 {
                font-size: 1em;
            }
            
            .notice p {
                font-size: 0.9em;
            }
        }

        /* 手机竖屏适配 */
        @media screen and (max-width: 767px) {
            .modal {
第 301-382 行(共82行)
                width: 90%;
                max-width: none;
            }
            
            .content {
                padding: 25px;
            }
            
            .title {
                font-size: 2em;
            }
            
            input {
                padding: 15px;
            }
            
            .btn {
                padding: 15px;
            }
        }

        /* 超小屏幕适配 */
        @media screen and (max-width: 320px) {
            .content {
                padding: 20px;
            }
            
            .title {
                font-size: 1.8em;
            }
            
            .btn {
                padding: 12px;
                font-size: 14px;
            }
        }
    </style>
</head>
<body>
    <div class="background"></div>
    <div class="grid"></div>
    
    <div class="modal">
        <div class="glow"></div>
        <div class="content">
            <div class="header">
                <h1 class="title">验证系统</h1>
            </div>

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

            <div class="buttons">
                <button class="btn" onclick="Call_Verify(code.value)">
                    <span>验证</span>
                </button>
                <button class="btn" onclick="Call_Query_Trial(code.value)">
                    <span>查询卡密</span>
                </button>
            </div>

            <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);
        }
        
        function Call_Query_Trial(text) {
            RuoLv.onButtonClick(1,text);
        }
    </script>
</body>
</html>

用户评论

0 条评论
暂无评论

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

相关应用