"Materialize Input"
Bootstrap 4.0.0 Snippet by vicky04666

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="wrap">
<div class="mat-div">
<label for="first-name" class="mat-label">First Name</label>
<input type="text" class="mat-input" id="first-name">
</div>
<div class="mat-div">
<label for="first-name" class="mat-label">Last Name</label>
<input type="text" class="mat-input" id="last-name">
</div>
<div class="mat-div">
<label for="address" class="mat-label">Address</label>
<input type="text" class="mat-input" id="address">
</div>
<button>Submit</button>
</div>
<script>
$(".mat-input").focus(function(){
$(this).parent().addClass("is-active is-completed");
});
$(".mat-input").focusout(function(){
if($(this).val() === "")
$(this).parent().removeClass("is-completed");
$(this).parent().removeClass("is-active");
})
</script>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
background-color: #6D5959;
}
body * {
font-family: 'Montserrat' sans-serif;
}
.wrap {
width: 450px;
margin: 0 auto;
}
.mat-label {
display: block;
font-size: 16px;
transform: translateY(25px);
color: #e2e2e2;
transition: all 0.5s;
}
.mat-input {
position: relative;
background: transparent;
width: 100%;
border: none;
outline: none;
padding: 8px 0;
font-size: 16px;
}
.mat-div {
padding: 30px 0 0 0;
position: relative;
}
.mat-div:after, .mat-div:before {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: