复制即用!纯html&css写的炫酷input输入框
以下是一个使用纯HTML和CSS创建的炫酷输入框的示例代码:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>炫酷输入框</title>
<style>
.cool-input {
position: relative;
width: 300px;
margin: 50px;
}
.cool-input input {
width: 100%;
padding: 10px 15px;
border: none;
border-radius: 5px;
background: #f2f2f2;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
font-size: 16px;
color: #333;
outline: none;
}
.cool-input input::placeholder {
color: #999;
opacity: 0.8;
}
.cool-input .underline {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: #3399ff;
transition: all 0.3s ease;
}
.cool-input input:focus + .underline {
height: 100%;
}
</style>
</head>
<body>
<div class="cool-input">
<input type="text" placeholder="输入内容...">
<div class="underline"></div>
</div>
</body>
</html>
这段代码展示了如何创建一个带有下划线动画的输入框,在用户聚焦输入框时,下划线会扩展到完整的高度,提供了良好的视觉反馈。这是一个简单的例子,可以根据需要添加更多的样式和交互效果。
评论已关闭