一个好看的input输入动画

这篇博客介绍了一种使用CSS实现输入框聚焦时Name文字上移以及输入框下边距出现的效果。通过input标签的focus和valid属性,结合CSS的transform和transition属性,实现了输入框获取焦点或验证有效时的视觉反馈。该效果适用于表单验证,提升了用户体验。
摘要由CSDN通过智能技术生成

在这里插入图片描述
这个效果需要注意的就是输入框触发的时机问题,在输入框获取焦点的时候:Name文字会向上移动,输入框的下边距会出现。
会用到input标签的focus和valid

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<link rel="stylesheet" type="text/css" href="./css/index.css" />
	</head>
	<style type="text/css">
		*{
			margin: 0;
			padding: 0;
			outline: none;
			box-sizing: border-box;
		}
		body{
			display: flex;
			align-items: center;
			justify-content: center;
			min-height: 100vh;
			background: linear-gradient(-135deg,#c850c0,#4158d0);
		}
		.wrapper{
			width: 450px;
			background-color: #fff;
			padding: 30px;
			box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
		}
		.wrapper .input-data{
			width: 100%;
			height: 40px;
			position: relative;
		}
		.wrapper .input-data input{
			width: 100%;
			height: 100%;
			border: none;
			border-bottom: 2px solid silver;
			font-size: 17px;
		}
		.input-data input:focus ~ label,
		.input-data input:valid ~ label{
			transform: translateY(-20px);
			font-size: 15px;
			color: #4158D0;
		}
		.wrapper .input-data label{
			position: absolute;
			bottom: 10px;
			left: 0;
			color: grey;
			pointer-events: none;
			transition: all 0.3s ease;
		}
		.wrapper .input-data .underline{
			position: absolute;
			bottom: 0px;
			height: 2px;
			width: 100%;
		}
		.input-data .underline:before{
			position: absolute;
			content: "";
			height: 100%;
			width: 100%;
			background: #4158D0;
			transform: scaleX(0);
			transition:transform 0.3s ease;
		}
		
		.input-data input:focus ~ .underline:before,
		.input-data input:valid ~ .underline:before{
			transform: scaleX(1);
		}
	</style>
	<body>
		<div class="wrapper">
			<div class="input-data">
				<input type="text" required="" />
				<div class="underline"></div>
				<label>Name</label>
			</div>
		</div>
	</body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值