xiuno_plugin/z_top/js/top.js
2018-11-15 17:33:22 +08:00

16 lines
601 B
JavaScript

jQuery(document).ready(function(){
jQuery("#backTop").hide();
jQuery(function () {
jQuery(window).scroll(function(){
if (jQuery(window).scrollTop()>1000){
jQuery("#backTop").fadeIn(1000);
}else{
jQuery("#backTop").fadeOut(1000);
}
});
jQuery("#backTop").click(function(){
jQuery("body,html").animate({scrollTop:0},1000);
return false;
});
});
});