用html+css+js制作一个漂亮的注册和登录页面
时间: 2024-05-05 17:22:12 浏览: 153
好的,下面是一个简单的注册和登录页面的代码示例:
HTML代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Login and Register</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="form-container sign-up-container">
<form action="#">
<h1>Create Account</h1>
<input type="text" placeholder="Name" />
<input type="email" placeholder="Email" />
<input type="password" placeholder="Password" />
<button>Sign Up</button>
</form>
</div>
<div class="form-container sign-in-container">
<form action="#">
<h1>Sign in</h1>
<input type="email" placeholder="Email" />
<input type="password" placeholder="Password" />
<button>Sign In</button>
</form>
</div>
<div class="overlay-container">
<div class="overlay">
<div class="overlay-panel overlay-left">
<h1>Welcome Back!</h1>
<p>To keep connected with us please login with your personal info</p>
<button class="ghost" id="signIn">Sign In</button>
</div>
<div class="overlay-panel overlay-right">
<h1>Hello, Friend!</h1>
<p>Enter your personal details and start journey with us</p>
<button class="ghost" id="signUp">Sign Up</button>
</div>
</div>
</div>
</div>
<script src="app.js"></script>
</body>
</html>
```
CSS代码:
```css
* {
box-sizing: border-box;
}
body {
background-color: #f6f5f7;
font-family: 'Open Sans', sans-serif;
margin: 0;
}
.container {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25),
0 10px 10px rgba(0,0,0,0.22);
position: relative;
overflow: hidden;
width: 768px;
max-width: 100%;
min-height: 480px;
}
.form-container {
position: absolute;
top: 0;
height: 100%;
transition: all 0.6s ease-in-out;
}
.sign-up-container {
left: 0;
width: 50%;
z-index: 2;
}
.sign-in-container {
left: 0;
width: 50%;
opacity: 0;
z-index: 1;
}
.container.right-panel-active .sign-in-container {
transform: translateX(100%);
opacity: 1;
}
.container.right-panel-active .sign-up-container {
transform: translateX(100%);
}
.form-container h1 {
color: #fff;
font-size: 36px;
margin: 0 0 20px;
}
.form-container input {
background-color: #f0f0f0;
border: none;
padding: 12px 15px;
margin: 8px 0;
width: 100%;
}
.form-container button {
background-color: #4CAF50;
border: none;
color: #fff;
cursor: pointer;
margin: 20px 0;
padding: 12px;
width: 100%;
}
.form-container button:hover {
background-color: #3e8e41;
}
.overlay-container {
position: absolute;
top: 0;
left: 50%;
width: 50%;
height: 100%;
overflow: hidden;
transition: transform 0.6s ease-in-out;
z-index: 100;
}
.container.right-panel-active .overlay-container{
transform: translateX(-100%);
}
.overlay {
background: #4f58ec;
background: -webkit-linear-gradient(to right, #4f58ec, #4f58ec);
background: linear-gradient(to right, #4f58ec, #4f58ec);
background-repeat: no-repeat;
background-size: cover;
background-position: 0 0;
color: #fff;
position: relative;
left: -100%;
height: 100%;
width: 200%;
transform: translateX(0);
transition: transform 0.6s ease-in-out;
}
.container.right-panel-active .overlay {
transform: translateX(50%);
}
.overlay-panel {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 40px;
text-align: center;
top: 0;
height: 100%;
width: 50%;
transform: translateX(0);
transition: transform 0.6s ease-in-out;
}
.overlay-left {
transform: translateX(-20%);
}
.container.right-panel-active .overlay-left {
transform: translateX(0);
}
.overlay-right {
right: 0;
transform: translateX(0);
}
.container.right-panel-active .overlay-right {
transform: translateX(20%);
}
.overlay-panel h1 {
color: #fff;
font-size: 36px;
margin: 0 0 20px;
}
.overlay-panel p {
color: rgba(255,255,255,0.8);
font-size: 14px;
font-weight: 300;
line-height: 1.5;
margin: 0;
}
.overlay-panel button {
background-color: transparent;
border: 1px solid #fff;
color: #fff;
cursor: pointer;
margin: 20px 0;
padding: 12px 30px;
}
.overlay-panel button:hover {
background-color: #fff;
color: #4f58ec;
}
.overlay-panel button:active {
background-color: #4f58ec;
color: #fff;
}
```
JavaScript代码:
```javascript
const signUpButton = document.getElementById('signUp');
const signInButton = document.getElementById('signIn');
const container = document.getElementById('container');
signUpButton.addEventListener('click', () => {
container.classList.add("right-panel-active");
});
signInButton.addEventListener('click', () => {
container.classList.remove("right-panel-active");
});
```
这段代码使用了CSS3的渐变效果和transform属性,实现了页面的动态切换效果。可以根据自己的需求进行修改美化。
阅读全文