锚点之间的垂直和水平平滑滚动

时间:2014-04-06 20:18:03

标签: javascript html scroll smoothing

我想在同一页面上使用锚点进行平滑滚动。 我的所有锚都分布在不同水平或/和垂直水平的页面上。 我在下面得到了这个代码,它只适用于垂直滚动,并且不适用于水平滚动。 我该怎么做才能使滚动同时垂直和水平?

$(function() {

// scroll handler
var scrollToAnchor = function( id ) {

// grab the element to scroll to based on the name
var elem = $("a[name='"+ id +"']");

// if that didn't work, look for an element with our ID
if ( typeof( elem.offset() ) === "undefined" ) {
  elem = $("#"+id);
}

// if the destination element exists
if ( typeof( elem.offset() ) !== "undefined" ) {

  // do the scroll
  $('html, body').animate({
          scrollTop: elem.offset().top
  }, 1000 );

}
};

// bind to click event
$("a").click(function( event ) {

// only do this if it's an anchor link
if ( $(this).attr("href").match("#") ) {

  // cancel default event propagation
  event.preventDefault();

  // scroll to the location
  var href = $(this).attr('href').replace('#', '')
  scrollToAnchor( href );

}

});

});

1 个答案:

答案 0 :(得分:0)

你也应该为scrollLeft属性设置动画......

$('html, body').animate({
          scrollTop: elem.offset().top,
          scrollLeft: elem.offset().left
}, 1000 );

或者使用jquery scrollTo插件。