Label Float Transition Effect
Criando um efeito float no label, quando input preenchido, com CSS puro
by Rodrigo Portillo
HTML
<div class="label-float">
<input type="text" placeholder=" "/>
<label>Telefone</label>
</div>
<br/>
<div class="label-float">
<input type="text" placeholder=" " required/>
<label>Nome de Usuário</label>
</div>
CSS
body{
font-family: sans-serif;
transform: scale(2);
transform-origin: 0 0;
height: 130px
}
.label-float{
position: relative;
padding-top: 13px;
}
.label-float input{
border: 0;
border-bottom: 2px solid lightgrey;
outline: none;
min-width: 180px;
font-size: 16px;
transition: all .3s ease-out;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-webkit-appearance:none;
border-radius:0;
}
.label-float input:focus{
border-bottom: 2px solid #3951b2;
}
.label-float input::placeholder{
color:transparent;
}
.label-float label{
pointer-events: none;
position: absolute;
top: 0;
left: 0;
margin-top: 13px;
transition: all .3s ease-out;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
}
.label-float input:required:invalid + label{
color: red;
}
.label-float input:focus:required:invalid{
border-bottom: 2px solid red;
}
.label-float input:required:invalid + label:before{
content: '*';
}
.label-float input:focus + label,
.label-float input:not(:placeholder-shown) + label{
font-size: 13px;
margin-top: 0;
color: #3951b2;
}