jquery实现html超链接锚点之间的平滑效果

之前没有学习js或jquery的时候,使用到超链接标签的锚点功能时,那样的效果感觉太生硬了,点击超链接,马上就跳转到目地地,给人一种不好的感觉,使用jquery来实现这一功能,给人的体验效果会好很多。具体代码是这样实现的,只要你网页上用到了锚点功能,将该代码直接贴上就可以使用。

$('a[href*=#]').click(function() {
			if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
				var $target = $(this.hash);
				$target = $target.length && $target || $('[name=' + this.hash.slice(1) + ']');
				if ($target.length) {
					var targetOffset = $target.offset().top;
					$('html,body').animate({
						scrollTop: targetOffset
					},700);
					return false;
				}
			}
		});

你可能感兴趣的:(jquery实现html超链接锚点之间的平滑效果)