forked from mt-bjtu-practical/Front-end-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
欧奕仪+20231167.html
321 lines (275 loc) · 8.73 KB
/
欧奕仪+20231167.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<style>
:root{
--white:#e9e9e9;
--gray:#333;
--blue:#03a65f;
--lightblue:#009758;
--button-radius:0.7rem;
--max-width:758px;
--max-height:420px;
font-size:16px;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
align-items: center;
background-color: var(--white);
/* background: url(background.jpg); */
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
display: grid;
height: 100vh;
place-items: center;
}
.from_title{
font-weight: 300;
margin: 0;
margin-bottom: 1.25rem;
}
.link{
color: var(--grey);
font-size: 0.9rem;
margin: 1.5rem 0;
text-decoration: none;
}
.container{
background-color: var(--white);
border-radius: var(--button-radius);
box-shadow: 0 0.9rem 1.7rem rgba(0, 0, 0, 0.25);
height: var(--max-height);
max-width: var(--max-width);
overflow: hidden;
position: relative;
width: 100%;
}
.container_from{
height: 100%;
position: absolute;
top: 0;
transition: all 0.6s ease-in-out;
}
.container--signin{
left: 0;
width: 50%;
z-index: 2;
}
.container.right-panel-active .container-signin{
transform: translateX(100%);
}
.container--signup{
left: 0;
opacity: 0;
width: 50%;
z-index: 1;
}
.container.right-panel-active .container--signup{
animation: show 0.6s;
opacity: 1;
transform: translateX(100%);
z-index: 5;
}
.container_overlay{
height: 100%;
left: 50%;
overflow: hidden;
position: absolute;
top: 0;
transition: transform 0.6s ease-in-out;
width: 50%;
z-index: 100;
}
.container.right-panel-active .container_overlay{
transform: translateX(-100%);
}
.overlay{
background-color: var(--lightblue);
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
left: -100%;
position: relative;
transform: translateX(0);
transition: transform 0.6s ease-in-out;
width: 200%;
}
.container.right-panel-active .overlay{
transform: translateX(50%);
}
.overlay_panel{
align-items: center;
display: flex;
flex-direction: column;
height: 100%;
justify-content: center;
position: absolute;
text-align: center;
top: 0;
transform: translateX(0);
transition: transform 0.6s ease-in-out;
width: 50%;
}
.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%);
}
.btn{
background-color: var(--blue);
background-image: linear-gradient(90deg,var(--blue) 0%, var(--lightblue) 74%);
border-radius: 20px;
border: 1px solid var(--blue);
color: var(--white);
cursor: pointer;
font-size: 0.8rem;
font-weight: bold;
letter-spacing: 0.1rem;
padding: 0.9rem 4rem;
text-transform: uppercase;
transition: transform 80ms ease-in;
}
.form > .btn{
margin-top: 1.5rem;
}
.btn:active{
transform: scale(0.95);
}
.btn:focus{
outline: none;
}
.from{
background-color: var(--white);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding: 0 3rem;
height: 100%;
text-align: center;
}
.input{
background-color: #fff;
border: none;
padding: 0.9rem 0.9rem;
margin: 0.5rem 0;
width: 100%;
}
.checkbox-container {
display: inline-block;
margin-top: 5px;
margin-bottom: 15px;
}
label {
font-size: 0.9rem;
margin-right: 20px;
}
@keyframes show{
0%,
49.99%{
opacity: 0;
z-index: 1;
}
50%,
100%{
opacity: 1;
z-index: 5;
}
}
</style>
<body>
<div class="container right-panel-active">
<div class="container_from container--signup">
<form class="from" id="from1" autocomplete="off">
<h2 class="from_title">注册账号</h2>
<input type="text" placeholder="User" class="input" id="User">
<input type="password" placeholder="Password" class="input" id="Password">
<input type="text" placeholder="Restaurant Name" class="input" style="display:none" id="input-container">
<div class="checkbox-container">
<label>
<input type="radio" name="user" value="option1" checked>
基础用户
</label>
</div>
<button class="btn" type="submit" id="btn1">点击注册</button>
</form>
</div>
<div class="container_from container--signin">
<form class="from" id="from2" autocomplete="off">
<h2 class="from_title">欢迎登录</h2>
<input type="text" placeholder="请输入:ouyiyi" class="input" id="User2">
<input type="password" placeholder="请输入:123456" class="input" id="Password2">
<a href="#" class="link">忘记密码</a>
<button class="btn" type="submit" id="btn2">登录</button>
</form>
</div>
<div class="container_overlay">
<div class="overlay">
<div class="overlay_panel overlay--left">
<button class="btn" id="signin">已有账号,直接登录</button>
</div>
<div class="overlay_panel overlay--right">
<button class="btn" id="signup">没有账号,点击注册</button>
</div>
</div>
</div>
</div>
</body>
<script>
window.onload = function() {
document.getElementById("User").value = "";
document.getElementById("Password").value = "";
document.getElementById("input-container").value = "";
}
const signinBtn = document.getElementById("signin");
const signupBtn = document.getElementById("signup");
const firstForm = document.getElementById("from1");
const secondForm = document.getElementById("from2");
const container = document.querySelector(".container");
signinBtn.addEventListener("click", ()=>{
container.classList.remove("right-panel-active");
})
signupBtn.addEventListener("click", ()=>{
container.classList.add("right-panel-active");
})
firstForm.addEventListener("submit",(e) => e.preventDefault());
secondForm.addEventListener("submit", (e) => e.preventDefault());
const option1 = document.querySelector('input[value="option1"]');
const inputContainer = document.getElementById('input-container');
option1.addEventListener('click', function() {
inputContainer.style.display = 'none';
});
document.getElementById("btn1").addEventListener("click", function() {
alert("该功能暂不可用");
})
document.getElementById("btn2").addEventListener("click", function(){
const username = document.getElementById("User2");
const Password = document.getElementById("Password2");
if(username.value == "" || Password.value == "") {
alert("用户名和密码不能为空!")
}
else if(username.value == "ouyiyi" && Password.value == "123456") {
alert("登陆成功!");
}
else {
alert("账号或密码有误!");
}
})
</script>
</html>