本项目介绍一个跳动的表单输入效果,当我们向表单中输入文字是,它的标签会跳动到输入框的上方。
form-input-wave.pnghtml主要部分是一个表单,其中包含Email和 Password 两个输入框,这里是用来展示特效的的地方。
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 字符编码 -->
<meta charset="UTF-8" />
<!-- 虚拟窗口设置,宽度为设备宽度,缩放比例为1.0-->
<meta name="viewport" content="width=device-width, inital-scale=1.0" />
<!-- 引入css -->
<link rel="stylesheet" href="style.css" />
<!-- 标题 -->
<title>Form Input Wave</title>
</head>
<body>
<div class="contianer">
<h1>Please Login</h1>
<!-- 表单 -->
<form>
<div class="form-control">
<input type="text" required>
<label>Email</label>
</div>
<div class="form-control">
<input type="password" required>
<label>Password</label>
</div>
<!-- 登录按钮 -->
<button class="btn">Login</button>
<p class="text">Don't have an account?<a href='#'>Register</a></p>
</form>
</div>
<script src="script.js"></script>
</body>
</html>
js部分比较简单,主要是为标签中的每个字母添加一个不同时间的过渡延迟,这样动画时候就能出现波形跳动的效果。
const labels = document.querySelectorAll('.form-control label')
labels.forEach(label => {
label.innerHTML = label.innerText
//将字符串分割成字符
.split('')
// 添加样式,指定过渡效果开始时间
.map((letter, idx) => `<span style="transition-delay:${idx * 50}ms">${letter}</span>`)
// 合并回来
.join('')
})
CSS部分是一个中规中矩的表单样式,其中为标签中的字母添加了transform样式,可以通过贝塞尔曲线过渡调到原有位置的上方。
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');
* {
box-sizing: border-box;
}
body {
background-color: steelblue;
color: #fff;
font-family: 'Muli', sans-serif;
display: flex; /* 弹性布局 */
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
overflow: hidden;
margin: 0;
}
.container {
background-color: rgba(0, 0, 0, 0.4);
padding: 20px 40px;
border-radius: 5px;
}
.container h1 {
text-align: center; /* 文本居中对齐 */
margin-bottom: 30px;
}
.container a {
text-decoration: none; /* 无文本装饰(取消下划线) */
color: lightblue;
}
.btn {
cursor: pointer;
display: inline-block;
width: 100%;
background: lightblue;
padding: 15px;
font-family: inherit;
font-size: 16px;
border: 0;
border-radius: 5px;
}
.btn:focus {
outline: 0;
}
.btn:active { /* 激活按钮 */
transform: scale(0.98); /* 大小变为0.98倍 */
}
.text {
margin-top: 30px;
}
.form-control {
position: relative;
margin: 20px 0 40px;
width: 300px;
}
.form-control input {
background-color: transparent;
border: 0;
border-bottom: 2px #fff solid;
display: block;
width: 100%;
padding: 15px 0;
font-size: 18px;
color: #fff;
}
.form-control input:focus, /* 输入获取焦点 */
.form-control input:valid { /* 输入合法 */
outline: 0; /* 轮廓为0 */
border-bottom-color: lightblue; /* 下边框颜色 */
}
.form-control label {
position: absolute;
top: 15px;
left: 0;
pointer-events: none;
}
.form-control label span {
display: inline-block;
font-size: 18px;
min-width: 5px;
transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* 贝塞尔曲线过渡 */
}
.form-control input:focus + label span, /* 加号为相邻兄弟选择器 */
.form-control input:valid + label span {
color: lightblue;
transform: translateY(-30px);
}
form-input-wave.gif
网友评论