js实现输入密码显示或隐藏功能按钮效果代码
代码语言:html
所属分类:表单美化
代码描述:js实现输入密码显示或隐藏功能按钮效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
@charset "utf-8";
:root {
--light-grey: #e0e0e0;
--dark-grey: #c5c5c5;
}
body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: var(--light-grey);
font-family: monospace, Arial, Helvetica, sans-serif;
}
body * {
box-sizing: border-box;
outline: none;
}
.container {
width: 210px;
position: relative;
}
input {
background: #ececec;
border: 0;
font-size: 1em;
width: 100%;
box-shadow: 0.15em 0.15em 0.25em var(--dark-grey) inset,
-0.15em -0.15em 0.25em #ffffff80 inset, 0.3em 0.3em 0.6em var(--dark-grey),
-0.2em -0.2em 0.5em #ffffff80;
border-radius: 4px;
padding: 10px;
position: absolute;
z-index: 1;
height: 40px;
color: #808080;
font-family: monospace, Arial, Helvetica, sans-serif;
}
input::placeholder {
color: #808080;
opacity: 1;
}
input:-ms-input-placeholder {
color: #808080;
}
input::-ms-input-placeholder {
color: #808080;
}
.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0