This is my own creation. My error was in css, I edit that I got my expected result. Here is my code:
<!DOCTYPE html>
<html>
<head>
<title>helllo</title>
<style>
.group {
position:relative;
margin-bottom:45px;
}
input {
font-size:18px;
padding:10px 10px 10px 5px;
display:block;
width:300px;
border:none;
border-bottom:1px solid #757575;
}
input:focus { outline:none; }
label {
color:#999;
font-size:18px;
font-weight:normal;
position:absolute;
pointer-events:none;
left:5px;
top:10px;
top:-20px;
font-size:14px;
color:#5264AE;
transition:0.2s ease all;
}
input:focus ~ label, input:valid ~ label {
top:-20px;
font-size:14px;
color:#5264AE;
}
.bar { position:relative; display:block; width:300px; }
.bar:before, .bar:after {
content:'';
height:2px;
width:0;
bottom:1px;
position:absolute;
background:#5264AE;
transition:0.2s ease all;
}
.bar:before {
left:50%;
}
.bar:after {
right:50%;
}
input:focus ~ .bar:before, input:focus ~ .bar:after {
width:50%;
}
.highlight {
position:absolute;
height:60%;
width:100px;
top:25%;
left:0;
pointer-events:none;
opacity:0.5;
}
input:focus ~ .highlight {
animation:inputHighlighter 0.3s ease;
}
@keyframes inputHighlighter {
from { background:#5264AE; }
to { width:0; background:transparent; }
}
</style>
</head>
<body>
<form>
<br/>
<br/>
<div class="group">
<input type="text" readonly value="shruthi">
<span class="highlight"></span>
<span class="bar"></span>
<label>Name</label>
</div>
<div class="group">
<input type="text" readonly value="shruthi@gmail.com" id="well">
<span class="highlight"></span>
<span class="bar"></span>
<label>Email</label>
</div>
</form>
<script>
$(document).ready(function() {
$('input').blur(function() {
if ($(this).val())
$(this).addClass('used');
else
$(this).removeClass('used');
});
});
</script>
</body>
</html>
source
share