You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
450 B
19 lines
450 B
$(function(){
|
|
$('#return-top').hide();
|
|
$(function(){
|
|
$(window).scroll(function(){
|
|
if($(window).scrollTop()>10){
|
|
$('#return-top').fadeIn(300);
|
|
}else{
|
|
$('#return-top').fadeOut(200);
|
|
}
|
|
});
|
|
$('#return-top').click(function(){
|
|
$('body,html').animate({scrollTop:0},300);
|
|
return false;
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|