如何 - 登录表单
学习如何使用 CSS 创建响应式登录表单。
单击按钮打开登录表单
如何创建登录表单
步骤 1) 添加 HTML
在容器内添加一个图像,并为每个字段添加输入(带有匹配的标签)。用 <form> 元素将它们包装起来以处理输入。您可以在我们的 PHP 教程中了解更多关于如何处理输入的信息。
示例
<form action="action_page.php" method="post">
<div class="imgcontainer">
<img src="img_avatar2.png" alt="头像" class="avatar">
</div>
<div class="container">
<label for="uname"><b>用户名</b></label>
<input type="text" placeholder="输入用户名" name="uname" required>
<label for="psw"><b>密码</b></label>
<input type="password" placeholder="输入密码" name="psw" required>
<button type="submit">登录</button>
<label>
<input type="checkbox" checked="checked" name="remember"> 记住我
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" class="cancelbtn">取消</button>
<span class="psw">忘记 <a href="#">密码?</a></span>
</div>
</form>
步骤 2) 添加 CSS
示例
/* 带边框的表单 */
form {
border: 3px solid #f1f1f1;
}
/* 全宽输入 */
input[type=text], input[type=password] {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
box-sizing: border-box;
}
/* 设置所有按钮的样式 */
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
}
/* 为按钮添加悬停效果 */
button:hover {
opacity: 0.8;
}
/* 取消按钮的额外样式(红色) */
.cancelbtn {
width: auto;
padding: 10px 18px;
background-color: #f44336;
}
/* 将头像图像居中放置在此容器中 */
.imgcontainer {
text-align: center;
margin: 24px 0 12px 0;
}
/* 头像图像 */
img.avatar {
width: 40%;
border-radius: 50%;
}
/* 为容器添加填充 */
.container {
padding: 16px;
}
/* “忘记密码” 文本 */
span.psw {
float: right;
padding-top: 16px;
}
/* 更改极小屏幕上的 span 和取消按钮的样式 */
@media screen and (max-width: 300px) {
span.psw {
display: block;
float: none;
}
.cancelbtn {
width: 100%;
}
}
自己试试 »
如何创建模态登录表单
步骤 1) 添加 HTML
示例
<!-- 打开模态登录表单的按钮 -->
<button onclick="document.getElementById('id01').style.display='block'">登录</button>
<!-- 模态框 -->
<div id="id01" class="modal">
<span onclick="document.getElementById('id01').style.display='none'"
class="close" title="关闭模态框">×</span>
<!-- 模态框内容 -->
<form class="modal-content animate" action="/action_page.php">
<div class="imgcontainer">
<img src="img_avatar2.png" alt="头像" class="avatar">
</div>
<div class="container">
<label for="uname"><b>用户名</b></label>
<input type="text" placeholder="输入用户名" name="uname" required>
<label for="psw"><b>密码</b></label>
<input type="password" placeholder="输入密码" name="psw" required>
<button type="submit">登录</button>
<label>
<input type="checkbox" checked="checked" name="remember"> 记住我
</label>
</div>
<div class="container" style="background-color:#f1f1f1">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">取消</button>
<span class="psw">忘记 <a href="#">密码?</a></span>
</div>
</form>
</div>
步骤 2) 添加 CSS
示例
/* 模态框(背景) */
.modal {
display: none; /* 默认隐藏 */
position: fixed; /* 保持在原地 */
z-index: 1; /* 位于顶部 */
left: 0;
top: 0;
width: 100%; /* 全宽 */
height: 100%; /* 全高 */
overflow: auto; /* 如果需要启用滚动 */
background-color: rgb(0,0,0); /* 备用颜色 */
background-color: rgba(0,0,0,0.4); /* 黑色带透明度 */
padding-top: 60px;
}
/* 模态框内容/框 */
.modal-content {
background-color: #fefefe;
margin: 5px auto; /* 从顶部 15% 并居中 */
border: 1px solid #888;
width: 80%; /* 可以更多或更少,取决于屏幕大小 */
}
/* 关闭按钮 */
.close {
/* 将其定位在模态框外部的右上角 */
position: absolute;
right: 25px;
top: 0;
color: #000;
font-size: 35px;
font-weight: bold;
}
/* 关闭按钮悬停时 */
.close:hover,
.close:focus {
color: red;
cursor: pointer;
}
/* 添加缩放动画 */
.animate {
-webkit-animation: animatezoom 0.6s;
animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
from {-webkit-transform: scale(0)}
to {-webkit-transform: scale(1)}
}
@keyframes animatezoom {
from {transform: scale(0)}
to {transform: scale(1)}
}
提示: 您也可以使用以下 javascript 代码通过单击模态框内容外部来关闭模态框(而不仅仅是使用“x”或“取消”按钮来关闭它)
示例
<script>
// 获取模态框
var modal = document.getElementById('id01');
// 当用户单击模态框外部的任何地方时,关闭它
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
自己试试 »
提示: 请访问我们的 <a href="/html/html_forms.asp">HTML 表单教程</a> 了解有关 HTML 表单的更多信息。
提示: 请访问我们的 <a href="/css/css_form.asp">CSS 表单教程</a> 了解有关如何设置表单元素样式的更多信息。