如何 - 注册表单
了解如何使用 CSS 创建响应式注册表单。
点击按钮打开注册表单
×
如何创建注册表单
步骤 1) 添加 HTML
使用 <form> 元素来处理输入。您可以在我们的 PHP 教程中了解更多相关信息。然后为每个字段添加输入(带有匹配的标签)
示例
<form action="action_page.php" style="border:1px solid #ccc">
<div class="container">
<h1>注册</h1>
<p>请填写此表格以创建帐户。</p>
<hr>
<label for="email"><b>电子邮件</b></label>
<input type="text" placeholder="输入电子邮件" name="email" required>
<label for="psw"><b>密码</b></label>
<input type="password" placeholder="输入密码" name="psw" required>
<label for="psw-repeat"><b>重复密码</b></label>
<input type="password" placeholder="重复密码" name="psw-repeat" required>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> 记住我
</label>
<p>创建帐户即表示您同意我们的 <a href="#" style="color:dodgerblue">条款与隐私政策</a>。</p>
<div class="clearfix">
<button type="button" class="cancelbtn">取消</button>
<button type="submit" class="signupbtn">注册</button>
</div>
</div>
</form>
步骤 2) 添加 CSS
示例
* {box-sizing: border-box}
/* 全宽输入字段 */
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* 设置所有按钮的样式 */
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover {
opacity:1;
}
/* 取消按钮的额外样式 */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}
/* 浮动取消和注册按钮并添加相等宽度 */
.cancelbtn, .signupbtn {
float: left;
width: 50%;
}
/* 为容器元素添加填充 */
.container {
padding: 16px;
}
/* 清除浮动 */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* 更改超小型屏幕上取消按钮和注册按钮的样式 */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
}
}
自己试试 »
如何创建模态注册表单
步骤 1) 添加 HTML
使用 <form> 元素来处理输入。您可以在我们的 PHP 教程中了解更多相关信息。然后为每个字段添加输入(带有匹配的标签)
示例
<!-- 打开模态的按钮 -->
<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="关闭模态">times;</span>
<form class="modal-content" action="/action_page.php">
<div class="container">
<h1>注册</h1>
<p>请填写此表格以创建帐户。</p>
<hr>
<label for="email"><b>电子邮件</b></label>
<input type="text" placeholder="输入电子邮件" name="email" required>
<label for="psw"><b>密码</b></label>
<input type="password" placeholder="输入密码" name="psw" required>
<label for="psw-repeat"><b>重复密码</b></label>
<input type="password" placeholder="重复密码" name="psw-repeat" required>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> 记住我
</label>
<p>创建帐户即表示您同意我们的 <a href="#" style="color:dodgerblue">条款与隐私政策</a>。</p>
<div class="clearfix">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">取消</button>
<button type="submit" class="signup">注册</button>
</div>
</div>
</form>
</div>
步骤 2) 添加 CSS
示例
* {box-sizing: border-box}
/* 全宽输入字段 */
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}
/* 当输入获得焦点时添加背景颜色 */
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}
/* 设置所有按钮的样式 */
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}
button:hover {
opacity:1;
}
/* 取消按钮的额外样式 */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}
/* 浮动取消和注册按钮并添加相等宽度 */
.cancelbtn, .signupbtn {
float: left;
width: 50%;
}
/* 为容器元素添加填充 */
.container {
padding: 16px;
}
/* 模态(背景) */
.modal {
display: none; /* 默认情况下隐藏 */
position: fixed; /* 保持在原位 */
z-index: 1; /* 位于顶部 */
left: 0;
top: 0;
width: 100%; /* 全宽 */
height: 100%; /* 全高 */
overflow: auto; /* 允许滚动(如果需要) */
background-color: #474e5d;
padding-top: 50px;
}
/* 模态内容/框 */
.modal-content {
background-color: #fefefe;
margin: 5% auto 15% auto; /* 距离顶部 5%,距离底部 15%,居中 */
border: 1px solid #888;
width: 80%; /* 可以更大或更小,具体取决于屏幕尺寸 */
}
/* 为水平标尺设置样式 */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}
/* 关闭按钮(x) */
.close {
position: absolute;
right: 35px;
top: 15px;
font-size: 40px;
font-weight: bold;
color: #f1f1f1;
}
.close:hover,
.close:focus {
color: #f44336;
cursor: pointer;
}
/* 清除浮动 */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* 更改超小型屏幕上取消按钮和注册按钮的样式 */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
}
}
提示:您还可以使用以下 JavaScript 代码,通过点击模态内容外部(不仅使用“x”或“取消”按钮)来关闭模态
示例
<script>
// 获取模态
var modal = document.getElementById('id01');
// 当用户点击模态外部的任何地方时,关闭它
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>
自己试试 »
提示:访问我们的 HTML 表单教程,了解有关 HTML 表单的更多信息。
提示:访问我们的 CSS 表单教程,了解有关如何设置表单元素样式的更多信息。