span {
position: absolute;
display: block;
margin: 0 0 0 8px;
transition: all 0.4s;
background: #fff;
top: 0;
left: 8px;
height: 10px;
padding: 0 10px;
color: #454545;
opacity: 0;
}
label input:focus + span {
opacity: 1;
margin: -45px 0 0 8px;
}
$('a[href^="#"]').on('click', function (e) {
e.preventDefault();
var target = this.hash;
var $target = $(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 1000, 'swing', function () {
window.location.hash = target;
});
});