HTML+CSS 登录页面(记得收藏)

简介: HTML+CSS 登录页面(记得收藏)

效果




完整代码

<div class="background"></div>
    <div class="login-container">
        <div class="login-card">
            <h1>登录</h1>
            <div class="input-group">
                <input type="text" required>
                <label>用户名</label>
            </div>
            <div class="input-group">
                <input type="password" required>
                <label>密码</label>
            </div>
            <button type="submit" class="btn">进入系统</button>
        </div>
    </div>
 <script>
        document.addEventListener('DOMContentLoaded', (event) => {
            const background = document.querySelector('.background');
            const colors = ['#ff00ff', '#00ffff', '#ff00aa', '#aa00ff', '#ff0066'];
            for (let i = 0; i < 50; i++) {
                const line = document.createElement('div');
                line.classList.add('neon-line');
                line.style.width = `${Math.random() * 300 + 50}px`;
                line.style.height = '2px';
                line.style.top = `${Math.random() * 100}%`;
                line.style.left = `${Math.random() * 100}%`;
                line.style.transform = `rotate(${Math.random() * 360}deg)`;
                line.style.animationDelay = `${Math.random() * 4}s`;
                background.appendChild(line);
            }
            let hue = 0;
            const animateBackground = () => {
                hue = (hue + 1) % 360;
                background.style.background = `linear-gradient(${hue}deg, ${colors[0]}, ${colors[1]}, ${colors[2]}, ${colors[3]}, ${colors[4]})`;
                background.style.backgroundSize = '400% 400%';
                background.style.animation = 'gradient 15s ease infinite';
                requestAnimationFrame(animateBackground);
            };
            animateBackground();
            const loginContainer = document.querySelector('.login-container');
            document.addEventListener('mousemove', (e) => {
                const { clientX, clientY } = e;
                const { innerWidth, innerHeight } = window;
                const x = (clientX - innerWidth / 2) / 25;
                const y = (clientY - innerHeight / 2) / 25;
                loginContainer.style.transform = `rotateY(${-x}deg) rotateX(${y}deg)`;
            });
        });
        const inputs = document.querySelectorAll('input');
        inputs.forEach(input => {
            input.addEventListener('focus', () => {
                input.parentNode.classList.add('focus');
            });
            input.addEventListener('blur', () => {
                if (input.value === '') {
                    input.parentNode.classList.remove('focus');
                }
            });
        });
    </script>

<style>
        @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');
        :root {
            --primary-color: #ff00ff;
            --secondary-color: #00ffff;
            --background-color: #000000;
            --text-color: #ffffff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Rajdhani', sans-serif;
            background-color: var(--background-color);
            color: var(--text-color);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
            perspective: 1000px;
        }
        .login-container {
            position: relative;
            width: 400px;
            height: 500px;
            transform-style: preserve-3d;
            transform: rotateY(-30deg);
            transition: transform 0.5s ease;
        }
        .login-card {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 40px;
            transform-style: preserve-3d;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .login-card:hover {
            transform: translateZ(50px);
            box-shadow: 0 0 30px var(--primary-color), 0 0 30px var(--secondary-color);
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            transform: translateZ(40px);
            text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--secondary-color);
        }
        .input-group {
            position: relative;
            width: 100%;
            margin-bottom: 30px;
        }
        input {
            width: 100%;
            padding: 10px 5px;
            background: transparent;
            border: none;
            border-bottom: 2px solid var(--text-color);
            color: var(--text-color);
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s, box-shadow 0.3s;
        }
        input:focus {
            border-bottom-color: var(--primary-color);
            box-shadow: 0 4px 6px rgba(255, 0, 255, 0.1);
        }
        label {
            position: absolute;
            top: 0;
            left: 5px;
            font-size: 16px;
            pointer-events: none;
            transition: 0.3s ease all;
        }
        input:focus ~ label,
        input:valid ~ label {
            top: -20px;
            font-size: 12px;
            color: var(--primary-color);
        }
        .btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: var(--background-color);
            padding: 12px 30px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 2px;
            transform: translateZ(20px);
            box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
        }
        .btn:hover {
            transform: translateZ(30px) scale(1.1);
            box-shadow: 0 0 30px var(--primary-color), 0 0 30px var(--secondary-color);
        }
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.5;
        }
        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        .neon-line {
            position: absolute;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            filter: blur(5px);
            opacity: 0;
            animation: neon-flash 4s infinite;
        }
        @keyframes neon-flash {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
    </style>
相关文章
|
28天前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML和CSS之旅
【9月更文挑战第32天】在这个数字化的时代,拥有一个个人博客不仅是展示自我的平台,也是技术交流的桥梁。本文将引导初学者理解并实现一个简单的个人博客网站的搭建,涵盖HTML的基础结构、CSS样式的美化技巧以及如何将两者结合来制作一个完整的网页。通过这篇文章,你将学会如何从零开始构建自己的网络空间,并在互联网世界留下你的足迹。
|
18天前
|
编解码 前端开发 JavaScript
使用 CSS 打印样式为 Web 页面设置专业的打印机效果
使用 CSS 打印样式为 Web 页面设置专业的打印机效果
33 2
|
20天前
|
移动开发 前端开发 JavaScript
【HTML】HTML页面和常见标签
【HTML】HTML页面和常见标签
24 1
|
29天前
|
前端开发 JavaScript 搜索推荐
打造个人博客网站:从零开始的HTML与CSS之旅
【9月更文挑战第31天】在这个数字时代,拥有一个个人博客网站是展示自我、分享知识和连接世界的重要方式。本文将引导你通过简单的HTML和CSS知识,一步步构建起你的在线空间。无论你是编程新手还是希望通过实践加深理解,这篇文章都将是你的理想指南。我们将探索基本概念,实现页面布局,并点缀以个性化样式,最终将静态页面转变为动态交互式网站。准备好了吗?让我们开始吧!
|
6天前
|
移动开发 HTML5
一个最简单的 HTML 页面结构如下:
HTML 是一种标记语言,用于描述网页结构。通过 `&lt;html&gt;`, `&lt;head&gt;`, `&lt;body&gt;` 等标签构建页面,支持文本、图像、链接、表格等多种元素。本文介绍了 HTML 基础,包括常用标签及创建简单网页的实例,帮助初学者快速入门。
34 0
|
1月前
|
JavaScript 前端开发 Java
SpringBoot项目的html页面使用axios进行get post请求
SpringBoot项目的html页面使用axios进行get post请求
36 6
|
1月前
|
前端开发 JavaScript
HTML+JavaScript+CSS DIY 分隔条splitter
HTML+JavaScript+CSS DIY 分隔条splitter
|
1月前
|
XML 前端开发 JavaScript
jQuery HTML / CSS 方法
jQuery HTML / CSS 方法
12 2
|
1月前
|
前端开发 数据安全/隐私保护 容器
HTML+CSS 水滴登录页
该代码实现了一个创意的水滴登录页面,包含一个水滴形状的登录框与两个按钮(忘记密码和注册)。登录框包括用户名、密码输入框及登录按钮。页面设计独特,采用渐变色与动态效果,增强了交互性和视觉美感。以下为关键实现步骤: - 重置默认样式。 - 设置页面背景颜色和尺寸。 - 定义登录表单容器的布局、位置和尺寸。 - 设置登录表单内容样式,包括3D效果和过渡动画。 - 创建伪元素增强水滴效果。 - 设定输入框容器和输入框样式。 - 为提交按钮、忘记密码和注册按钮设定特定样式,并添加悬停效果。
|
18天前
|
XML Web App开发 数据格式
HTML 页面显示 XML 数据
10月更文挑战第2天