固定的回到顶部按钮

固定的回到顶部按钮
下载次数:1 文件大小:3.6KB 所需积分:0 QQ联系购买积分:3331653644(1元=10积分)
$(document).ready(function() {
	// Show or hide the sticky footer button
	$(window).scroll(function() {
		if ($(this).scrollTop() > 200) {
			$('.go-top').fadeIn(200);
		} else {
			$('.go-top').fadeOut(200);
		}
	});
	
	// Animate the scroll to top
	$('.go-top').click(function(event) {
		event.preventDefault();
		
		$('html, body').animate({scrollTop: 0}, 300);
	})
});

 

0 条评论