拿走请三联,并注明出处!
没有上传原背景图,使用的话需自己更改图片名称
可连接注册界面,和用户照片墙,此文只有登录界面代码,代码存在些许问题,望观看的大佬们多多指教!
* {
margin: 0;
padding: 0;
}
html {
height: 100%;
width: 100%;
overflow: hidden;
margin: 0;
padding: 0;
background: url(w3.jpeg) no-repeat 0px 0px;
background-repeat: no-repeat;
background-size: 100% 100%;
-moz-background-size: 100% 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
}
#center {
width:25%;
display: flex;
justify-content: center;
align-items: center;
height: 50%;
background-color: rgba(250, 249, 246, 0.479);
border-radius: 50%;
}
p {
margin-top: 30px;
margin-left: 20px;
color: rgb(51, 59, 59);
}
input {
margin-left: 15px;
border-radius: 5px;
border-style: hidden;
height: 30px;
width: 140px;
background-color: rgba(119, 173, 209, 0.5);
outline: none;
color: #ffffff;
padding-left: 10px;
}
.button {
border-color: cornsilk;
background-color: rgba(100, 149, 237, .7);
color: aliceblue;
border-style: hidden;
border-radius: 5px;
width: 100px;
height: 31px;
font-size: 16px;
}
a{
font-size: 17px;
color:rgb(38, 135, 247);
}
function jumpRe(){
window.location.href="re.html";
}
document.getElementById("a").onclick = function click(){
window.location.href="re.html";
}
//判断邮箱格式
email.onchange = function(){
var email = this.value;
var reg = /^([a-zA-Z]|[0-9])(\w|\-)+@[a-zA-Z0-9]+\.([a-zA-Z]{2,4})$/;
if(reg.test(email)){
alert("邮箱格式正确");
}else{
alert("邮箱格式不正确");
}
}
//判断密码格式
passworld.onchange = function(){
var passwolrd = this.value;
var reg = /^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,12}$/;
if(reg.test(passworld)){
}else{
alert("密码格式不正确");
}
}
function submit() {
var pwd1 = document.getElementById("passworld").value;
var e = document.getElementById("email").value;
var pwd2=localStorage.getItem("password");
var e2=localStorage.getItem("email");
if(pwd1==pwd2&&e==e2)
window.location.href="照片墙.html";
else
alert("账号或密码不正确");
}