jquery 点击元素后,滚动条滚动至该元素位置 - 笔记



点击元素后,滚动条滚动至该元素位置:

	$('a.lead-link').bind('click', function(e) {
		e.preventDefault();
		$('html,body').animate({
			scrollTop: $(this.hash).offset().top - 60
		}, 1500);
	});



你可能感兴趣的:(jquery)