开源项目模板edit icon

Fork(复制)
下载
嵌入
设置
BUG反馈
index.html
assets
现在支持上传本地图片了!
            
            <!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>欢迎光临江枫总站 - 碧蓝档案风格</title>
    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans SC', sans-serif;
        }
        
        html, body {
            height: 100%;
            overflow: hidden;
        }
        
        body {
            color: #fff;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        /* 视频背景 */
        .video-background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 20, 50, 0.4);
        }
        
        .container {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        /* 顶部导航栏 - 碧蓝档案风格 */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 30px;
            background: rgba(10, 20, 50, 0.7);
            border-bottom: 2极速电竞数据平台px solid #48b0ff;
            border-radius: 0 0 12px 12px;
            backdrop-filter: blur(5px);
            margin-bottom: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            flex-shrink: 0;
        }
        
        /* 用户信息区域 - 左上角 */
        .user-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            border: 3px solid #48b0ff;
            object-fit: cover;
            transition: all 0.3s ease;
            box-shadow: 0 0 15px rgba(72, 176, 255, 0.5);
        }
        
        .user-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(72, 176, 255, 0.8);
        }
        
        .user-info {
            display: flex;
            flex-direction: column;
        }
        
        .user-name {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(to right, #48b0ff, #8befff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .user-level {
            font-size: 14px;
            color: #8befff;
            margin-top: 5px;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-link {
            color: #b0d0极速电竞数据平台ff;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 6px;
            transition: all 0.3s ease;
        }
        
       极速电竞数据平台 .nav-link:hover {
            background: rgba(72, 176, 255, 0.2);
            color: #ffffff;
        }
        
        /* 欢迎消息部分 */
        .welcome-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            text-align: center;
            padding: 20px;
            position: relative;
            z-index: 2;
            flex-shrink: 0;
        }
        
        .welcome-text {
            font-size: 4.5rem;
            font-weight: 800;
            margin-bottom: 30px;
            position: relative;
            background: linear-gradient(90deg, #ff5252, #ff7b25, #ffd166, #8ac926, #1982c4, #极速电竞数据平台6a4c93, #ff5252);
            background-size: 400% auto;
            -webkit-background极速电竞数据平台-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 4s linear infinite, textPopIn 1.5s ease-out;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
            letter-spacing: 2px;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            100% { background-position: 400% 50%; }
        }
        
        @keyframes textPopIn {
            0% { 
                transform: scale(0.5);
                opacity: 0;
            }
            70% {
                transform: scale(1.05);
            }
            100% { 
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .subtitle {
            font-size: 1.5rem;
            color: #b0d0ff;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.5s forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .loading-bar {
            width: 300px;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: hidden;
            margin-bottom: 20px;
            opacity: 0;
            animation: fadeIn 1s ease-out 1s forwards;
        }
        
        .loading-progress {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #48b0ff, #8befff);
            border-radius: 3px;
            animation: loading 2s ease-in-out forwards;
        }
        
        @keyframes loading {
            0极速电竞数据平台% { width: 0%; }
            100% { width: 100%; }
        }
        
        .instruction {
            color: #8acfff;
            font-size: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 2.5s forwards;
        }
        
        /* 内容区域 */
        .content {
            background: rgba(10, 20, 50, 0.7);
            border-radius: 16px;
            padding: 40px;
            margin: 40px auto;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(72, 176, 255, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            transform: translateY(50px);
            opacity: 0;
            transition: all 0.8s ease-out;
            width: 90%;
            max-width: 1200px;
            flex-shrink: 0;
            display: none;
        }
        
        .content.visible {
            transform: translateY(极速电竞数据平台0);
            opacity: 1;
            display: block;
        }
        
        .content-title {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: #48b0ff;
            text-align: center;
极速电竞数据平台        }
        
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .card {
            background: rgba(15, 30, 60, 0.7);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(72, 176, 255, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.极速电竞数据平台3);
            border-color: #48b0ff;
        }
        
        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #48b0ff 0%, #3a78c2 100%);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            font-size: 28px;
        }
        
        .card-title {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #8befff;
        }
        
        .card-desc {
            color: #b0d0ff;
            line-height: 1.6;
        }
        
        .footer {
            text-align: center;
            padding: 30px;
            margin-top: auto;
            color: #6b93c5;
            font-size: 0.9rem;
            border-top: 1px solid rgba(72, 176, 255, 0.2);
            flex-shrink: 0;
            width: 100%;
            background: rgba(10, 20, 50, 0.7);
            backdrop-filter: blur(5px);
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            .welcome-text {
                font-size: 3rem;
            }
            
            .header {
                flex-direction: column;
                gap: 15px;
            }
            
            .user-section {
                order: 1;
                margin-bottom: 15px;
            }
            
            .nav-links {
                order: 2;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
            }
        }
    </style>
</head>
<body>
    <!-- 视频背景 -->
    <div class="video-background">
        <video autoplay muted loop playsinline>
            <source src="" type="/assets/20211030213905_9a8ca.jpg">
            <!-- 备用视频源 -->
            <source src="https://haowallpaper.com/homeViewLook/15861442988052800" type="video/mp4">
        </video>
        <div class="video-overlay"></div>
    </div>
    
    <div class="container">
        <header class="header">
            <!-- 用户信息区域 - 左上角 -->
            <div class="user-section">
                <img src="./assets/20211030213905_9a8ca.jpg" alt="用户头像" class="user-avatar">
                <div class="user-info">
                    <span class="user-name">江枫老师</span>
                    <span class="user-level">Lv.88 | 管理员</span>
                </div>
            </div>
            
            <nav class="nav-links">
                <a href="#" class="nav-link">首页</a>
                <a href="#" class="nav-link">关于</a>
                <a href="#" class极速电竞数据平台="nav-link">服务</a>
                <a href="#" class="nav-link">公告</a>
                <a href="#" class="nav-link">联系</a>
            </nav>
        </header>
        
        <div class="welcome-container">
            <h1 class="welcome-text">欢迎光临江枫总站</h1>
            <p class="subtitle">碧蓝档案主题风格页面 - 为您提供卓越体验</p>
            
            <div class="loading-bar">
                <div class="loading-progress"></div>
            </div>
            
            <p class="instruction">页面加载中,请稍候...</p>
        </div>
        
        <div class="content" id="mainContent">
            <h2 class="content-title">江枫总站服务介绍</h2>
            <极速电竞数据平台p style="text-align: center; color: #b0d0ff; line-height: 1.8; margin-bottom: 30px;">
                欢迎来到江枫极速电竞数据平台总站,我们提供最优质的服务和体验,采用碧蓝档案主题设计风格,为您带来独特的视觉享受。
            </p>
            
            <div class="card-grid">
                <div class="card">
                    <div class="card-icon">🚀</div>
                    <h3 class="card-title">高速服务</h极速电竞数据平台3>
                    <p class="card-desc">我们提供高速稳定的服务体验,确保您畅享无缝连接和快速响应。</p>
                </div>
                
                <div class="card">
                    <div class="card-icon">🔒</div>
                    <h3 class="card-title">安全可靠</h3>
                    <p class="card-desc">采用最先进的安全技术,保障您的数据和隐私安全无虞。</p>
                </div>
                
                <div class="card">
                    <div class="card-icon">🎨</div>
                    <h3 class="card-title">精美设计</h3>
                    <p class="card-desc">碧蓝档案风格UI设计,带来视觉上的享受和愉悦的用户体验。</p>
                </div>
            </div>
        </div>
        
        <footer class="footer">
            <p>© 2023 江枫总站 - 碧蓝档案主题页面 | 设计制作</p>
        </footer>
    </div>

    <script>
        document.addEventListener('DOMContentLoaded', function() {
            // 初始时禁止滚动
            document.body.style.overflow = 'hidden';
            
            // 2秒后允许滚动并显示内容
            setTimeout(function() {
                document.body.style.overflow = 'auto';
                document.getElementById('mainContent').classList.add('visible');
                
                // 添加滚动提示动画
                const instruction = document.querySelector('.instruction');
                instruction.textContent = '现在您可以向下滚动查看更多内容';
                instruction.style.color = '#8aff6a';
            }, 2000);
            
            // 卡片悬停效果
            const cards = document.querySelectorAll('.card');
            cards.forEach(card => {
                card.addEventListener('mouseenter', function() {
                    this.style.transform = 'translateY(-5px)';
                    this.style.boxShadow = '0 8px 20px rgba(0, 0, 0, 0.3)';
                    this.style.borderColor = '#48b0ff';
                });
                
                card.addEventListener('mouseleave', function() {
                    this.style.transform = 'translateY(0)';
                    this.style.boxShadow = 'none';
                    this.style.borderColor = 'rgba(72, 176, 255, 0.2)';
                });
            });
            
            // 用户头像悬停效果
            const userAvatar = document.querySelector('.user-avatar');
            userAvatar.addEventListener('mouseenter', function() {
                this.style.transform = 'scale(1.1)';
                this.style.boxShadow = '0 0 20px rgba(72, 176, 255, 0.8)';
            });
            
            userAvatar.addEventListener('mouseleave', function() {
                this.style.transform = 'scale(1)';
                this.style.boxShadow = '0 0 15px rgba(72, 176, 255, 0.5)';
            });
        });
    </script>
</body>
</html>
        
预览
控制台