Využívá funkce z jquery, zajistí tlačítko na vrácení se nahoru na webu
$(document).ready(function() {
$(window).scroll(function() {
if($(this).scrollTop()) {
$('#top').stop(true, true).fadeIn();
} else {
$('#top').stop(true, true).fadeOut();
}
});
$('#top').click(function() {
$('html, body').animate({scrollTop: 0}, 800);
return false;
});
});
<div id="top" style="position: fixed; bottom: 10px; right: 10px; display: none; cursor: pointer;" title="Zpátky nahoru">Zpět nahoru</div>