jQuery(function(){
backtotop();
function backtotop() {
if ($('#backtotop').length) {
jQuery('#backtotop a').click(function() {
jQuery('body,html').animate({
scrollTop: 0
}, 500);
return false;
});
}
}
/*----------scroll 监听-------------------------------*/
$(window).scroll(function() {
if ($(this).scrollTop() > 150) {
$('#backtotop').fadeIn();
} else {
$('#backtotop').fadeOut();
}
});
})