创作一个炫酷的Input框

在这里插入图片描述
要注意的CSS伪类:
:focus 表示获得焦点的元素(如表单输入)
:valid 选择器用于选取拥有有效值的表单元素

注:body种background设置了背景图片,可以自行搜索图片添加

<template>
  <div class="wrapper">
    <div class="input-data">
        <input type="text" required="" />
        <div class="underline"></div>
        <label>Name</label>
    </div>
    <div class="input-data">
        <input type="text" required="" />
        <div class="underline"></div>
        <label>Label</label>
    </div>
  </div>
</template>

<script>
export default {
    
    

}
</script>

<style>
*{
    
    
	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); */
    background: url('@/assets/image2.jpg');
    background-size: 100% 100%;
}
.wrapper{
    
    
    /* background:#00000090;  /*透明度 90*/
	border-radius: 20px;
	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: 90%;
	height: 100%;
	border: none;
    margin-left: 30px;
    margin-right: 13px;
	border-bottom: 2px solid silver;
	font-size: 17px;
}
.wrapper .input-data label{
    
    
	position: absolute;
	bottom: 10px;
	left: 30px;
	color: grey;
	pointer-events: none;
	transition: all 0.3s ease;
}
.input-data input:focus ~ label,
.input-data input:valid ~ label{
    
        /* 获得焦点 且拥有有效值的表单元素 会把label(name)字段变位置 */
	transform: translateX(-50px);   /* name字段移动位置 */
	font-size: 15px;
	color: #4158D0;
}
.wrapper .input-data .underline{
    
    
	position: absolute;
	bottom: 0px;
	height: 2px;
	width: 100%;
}
.input-data .underline:before{
    
        /* 给底线加个颜色 */
    margin-left: 30px;
	position: absolute;
	content: "";
	height: 2px;
	width: 90%;
	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>

猜你喜欢

转载自blog.csdn.net/weixin_52268321/article/details/130211323
今日推荐