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
| <!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>Document</title> <style> * { margin: 0; padding: 0; }
body { background-color: rgba(0, 0, 0, 1); }
form { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); display: flex; justify-content: center; flex-direction: column; }
div { position: relative; width: 300px; display: flex; align-items: center; justify-content: space-between; border: none; border-bottom: 1px solid #ccc; color: #ccc;
}
h5 { text-align: center; }
input { height: 30px; outline: none; background-color: transparent; color: white; }
input[type="text"] { border: none; border-bottom: 1px solid #ccc; }
#pwd { margin-top: 20px; border: none; }
button { margin-top: 30px; width: 300px; height: 30px; outline: none; background-color: #b80e0e; color: white; border: none; border-radius: 25px; cursor: pointer; }
a { text-decoration: none; color: #ccc; }
img { position: absolute; top: 15px; right: 80px; width: 24px; } </style> </head>
<body> <form action="" method="get"> <h5>京东登录</h5> <input type="text" name="" id="info" placeholder="用户名/邮箱/已验证手机"> <div> <input type="password" name="" id="pwd" placeholder="请输入密码"> <label for="pwd"> <img src="./images/close.png" alt="" srcset="" width="24"> | <a href="#">忘记密码</a> </label> </div> <button type="submit">登录</button> </form> <script> var psd = document.getElementById('pwd'); var eye = document.querySelector('img') var flag = true; eye.onclick = function () { if (flag) { psd.type = 'text'; eye.src = 'images/open.png'; flag = !flag; } else { psd.type = 'password'; eye.src = 'images/close.png'; flag = !flag; } }
</script> </body>
</html>
|