登录注册页面

登录页面和注册页面点击时可以切换背景以及色调

一个HTML实现两个页面,是不是觉得美滋滋呢

边框还有非常酷炫的特效,是不是非常的哇塞呢
登录和注册

还在等什么,赶快白嫖起来吧:https://download.csdn.net/download/liyankang/88751593

代码我放在下面哦,快快白嫖起来吧。

HTML文件

html 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>Animated Login & Registration Form</title>
	<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
	<div class="container">
		<span></span>
		<span></span>
		<span></span>
		<form id="signinForm">
			<h2>Login</h2>
			<div class="inputBox">
				<input type="text" placeholder="Username">
			</div>
			<div class="inputBox">
				<input type="password" placeholder="Password">
			</div>
			<div class="inputBox group">
				<a href="#">Forgot Password</a>
				<a href="#" id="signup">Signup</a>
			</div>
			<div class="inputBox">
				<input type="submit" value="Sign in">
			</div>
		</form>

		<form id="signupForm">
			<h2>Registration</h2>
			<div class="inputBox">
				<input type="text" placeholder="Username">
			</div>
			<div class="inputBox">
				<input type="text" placeholder="Email Address">
			</div>
			<div class="inputBox">
				<input type="password" placeholder="Create Password">
			</div>
			<div class="inputBox">
				<input type="password" placeholder="Confirm Password">
			</div>
			<div class="inputBox">
				<input type="submit" value="Register Account">
			</div>
			<div class="inputBox group">
				<a href="#">Already Have an Account ? <b id="signin">Login</b></a>
			</div>
		</form>
	</div>
	<script>
		let signup = document.querySelector('#signup');
		let signin = document.querySelector('#signin');
		let body = document.querySelector('body');
		signup.onclick = function(){
			body.classList.add('signup');
		}
		signin.onclick = function(){
			body.classList.remove('signup');
		}
	</script>
</body>
</html>

css文件

css 复制代码
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}
body 
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
body::before 
{
	content: '';
	position: absolute;
	inset: 0;
	background: url(bg1.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
}
body::after 
{
	content: '';
	position: absolute;
	inset: 0;
	background: url(bg2.jpg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: 0.5s;
}
body.signup::after 
{
	opacity: 1;
}
.container 
{
	position: relative;
	width: 350px;
	height: 340px;
	border-radius: 15px;
	box-shadow: 0 5px 25px rgba(0,0,0,0.25);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	transition: 0.5s;
	overflow: hidden;
}
body.signup .container  
{
	height: 440px;
}
.container::before 
{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: repeating-conic-gradient(from var(--a),#45f3ff 0%,#45f3ff 10%,transparent 10%,transparent 80%,#45f3ff 100%);
	border-radius: 20px;
	animation: animate 2.5s linear infinite;
}
body.signup .container::before 
{
	filter: hue-rotate(140deg);
}
@property --a 
{
	syntax: '<angle>';
	inherits: false;
	initial-value: 0deg;
}
@keyframes animate 
{
	0% 
	{
		--a: 0deg
	}
	100% 
	{
		--a: 360deg
	}
}
.container span 
{
	position: absolute;
	inset: 5px;
	overflow: hidden;
	border-radius: 15px;
}
.container span::before
{
	content: '';
	position: absolute;
	inset: 5px;
	background: url(bg1.jpg);background-attachment: fixed;
	background-size: cover;
	background-position: center;
	filter: blur(10px);
}
.container span::after
{
	content: '';
	position: absolute;
	inset: 5px;
	background: url(bg1.jpg);background-attachment: fixed;
	background-size: cover;
	background-position: center;
	filter: blur(15px);
}
body.signup .container span::before,
body.signup .container span::after
{
	background: url(bg2.jpg);background-attachment: fixed;
	background-size: cover;
	background-position: center;
	filter: blur(15px);
}
form 
{
	position: absolute;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 100%;
	gap: 15px;
	transition: 0.5s;
}
form#signupForm
{
	left: 100%;
}
body.signup form#signinForm 
{
	left: -100%;
}
body.signup form#signupForm 
{
	left: 0;
}
form h2 
{
	position: relative;
	color: #fff;
	font-size: 1.5em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 10px;
}
form .inputBox 
{
	position: relative;
	width: 70%;
	display: flex;
	justify-content: space-between;
}
form .inputBox a 
{
	color: #fff;
	text-decoration: none;
	font-size: 0.85em;
}
form .inputBox a:nth-child(2)
{
	text-decoration: underline;
}
form .inputBox input 
{
	width: 100%;
	outline: none;
	border: 1px solid rgba(255,255,255,0.25);
	background: rgba(0,0,0,0.15);
	padding: 6px 15px;
	border-radius: 4px;
	font-size: 0.85em;
	color: #fff;
}
form .inputBox input::placeholder 
{
	color: rgba(255,255,255,0.5);
}
form .inputBox input[type="submit"]
{
	background: #2196f3;
	font-weight: 500;
	cursor: pointer;
}

form#signupForm .inputBox input[type="submit"]
{
	background: #f4242f;
}
form#signupForm b  
{
	font-weight: 500;
	color: #ffeb3b;
	text-decoration: underline;
}
相关推荐
子兮曰4 天前
jev-ultrafast 深度解析:7 秒订机票的浏览器 Agent 是如何炼成的
前端·后端·agent
子兮曰4 天前
Jev 爆发一周:7 秒 Agent 背后的 System One 生态与三场争议
前端·后端·ai编程
前端小万4 天前
写公众号赚了 3000 块后,我做了一款叫 "一键成稿" 的软件
前端·微信小程序
爱勇宝4 天前
ZCode 开源 24 小时:一份没有历史的账本,回答不了"有没有偷代码"
前端·后端·chatglm (智谱)
三十而立洋4 天前
Cookie 详解:从产生到安全,一次讲透
前端·javascript
卡布鲁4 天前
把一个 Vite + Vue3 应用塞进 qiankun (React + Umi3) 主站:十个坑的复盘
前端·javascript·react.js
汉堡大王95274 天前
Jev:不是聊天机器人, 而是一个智能 if 语句
前端·人工智能·后端
梦想很大很大4 天前
从运行事实到回归证据:Workrun 的 Telemetry 与 Evaluation 实践
前端·人工智能·后端
计算机魔术师4 天前
Meta Muse agent 接入 Shopify 的 Shop Pay 实现代理式购物
前端
沙蒿同学4 天前
我用 Go 搭了一条 AI Agent 流水线:从 1 张商品图到一整套淘宝详情页
前端·javascript·后端