console
const container = document.querySelector('#container');
const signInButton = document.querySelector('#signIn');
const signUpButton = document.querySelector('#signUp');
signUpButton.addEventListener('click',() => container.classList.add('right-panel-active'))
signInButton.addEventListener('click',() => container.classList.remove('right-panel-active'))
<!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.0">
<title>全国油气区块数据库与智能评价管理平台</title>
<link rel="stylesheet" href="./assets/style.css">
</head>
<body>
<div class="container right-panel-active" id="container">
<div class="form-container sign-up-container">
<form action="#">
<h1>用户注册</h1>
<input type="text" placeholder="用户名">
<input type="password" placeholder="密码">
<input type="email" placeholder="邮箱">
<button id="send_code">发送验证码</button>
<input type="email" placeholder="验证码">
<button>注册</button>
</form>
</div>
<div class="form-container sing-in-container">
<form action="#">
<h1>用户登陆</h1>
<input type="text" placeholder="用户名">
<input type="password" placeholder="密码">
<a href="#">忘记密码?</a>
<button>登陆</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-pannel overlay-left">
<h1>已有账号?</h1>
<p>点击登录按钮登录现有账户</p>
<button class="ghost" id="signIn">登陆</button>
</div>
<div class="overlay-pannel overlay-right">
<h1>没有帐号?</h1>
<p>点击注册按钮以注册新账号</p>
<button class="ghost" id="signUp">注册</button>
</div>
</div>
</div>
</div>
</body>
</html>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,html{
font-family: Arial, Helvetica, sans-serif;
background: #f8f8f8;
background-attachment: fixed;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
margin: 0 auto;
}
h1{
margin: 0.2rem;
font-size: 1.2rem;
}
p{
font-size: 1rem;
line-height: 1.5rem;
font-weight: 100;
margin: 1.2rem 0;
letter-spacing: 0.1rem;
}
span{
font-size: 0.8rem;
margin: 1.2rem 0;
}
a{
color: #333;
font-size: 1rem;
text-decoration: none;
}
.container{
position: relative;
background: #fff;
border-radius: 10px;
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),0 10px 10px rgba(0, 0, 0, 0.22);
padding: 0.6rem;
width: 50rem;
height: 35rem;
overflow: hidden;
max-width: 100vw;
min-height: 70vh;
}
.form-container form{
background: #fff;
display: flex;
flex-direction: column;
padding: 0 1.8rem;
height: 100%;
justify-content: center;
align-items: center;
}
.social-container{
margin: 0.6rem 0;
}
.social-container a{
border: 1px solid #eee;
border-radius: 50%;
display: inline-flex;
justify-content: center;
align-items: center;
margin: 0 5px;
height: 1.8rem;
width: 1.8rem;
}
.social-container a:hover{
opacity: 0.8;
}
.form-container input{
width: 100%;
height: 2.2rem;
text-indent: 1rem;
border: 1px solid #ccc;
border-left: none;
border-right: none;
border-top: none;
outline: none;
margin: 0.6rem 0;
}
.form-container button:active{
transform: scale(0.95,0.95);
}
.form-container button{
padding: 0.4rem 1rem;
background: #3359CA;
color: white;
border: 1px solid #fff;
outline: none;
cursor: pointer;
width: 5rem;
border-radius: 8px;
transition: all 100ms ease-in;
margin: 0.6rem 0;
font-size: 0.6rem;
padding: 0.5rem 0;
}
button#send_code{
width: 100%;
}
button.ghost{
background: transparent;
border-color: #fff;
border: 1px solid #fff;
outline: none;
cursor: pointer;
width: 5rem;
border-radius: 8px;
transition: all 800ms ease-in;
margin: 0.6rem 0;
padding: 0.5rem 0;
color: white;
font-size: 0.6rem;
}
button.ghost:active{
transform: scale(0.95,0.95);
}
.form-container{
position: absolute;
top: 0;
height: 100%;
transition: all 0.5s ease-in;
}
.sing-in-container{
left: 0;
width: 50%;
z-index: 2;
}
.sign-up-container{
left: 0;
width: 50%;
opacity: 0;
z-index: 1;
}
.overlay{
background: #3359CA;
width: 200%;
height: 100%;
position: relative;
left: -100%;
transition: all 0.6s ease-in-out;
color: white;
}
.overlay-container{
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
overflow: hidden;
transition: all 0.6s ease-in-out;
z-index: 99;
}
.overlay-pannel{
position: absolute;
top: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 50%;
height: 100%;
padding: 0 2.2rem;
}
.overlay-right{
right: 0;
}
.container.right-panel-active .overlay-container{
transform: translateX(-100%);
}
.container.right-panel-active .sing-in-container{
transform: translateX(100%);
}
.container.right-panel-active .sign-up-container{
transform: translateX(100%);
opacity: 1;
z-index: 5;
transition: all 0.6s ease-in-out;
}
.container.right-panel-active .overlay{
transform: translateX(50%);
}
.container.right-panel-active .overlay-left{
transform: translateX(0);
transition: all 0.6s ease-in-out;
}
.container.right-panel-active .overlay-right{
transform: translateX(20%);
transition: all 0.6s ease-in-out;
}