8

我正在使用这个 jQuery 脚本进行平滑滚动(在 CSS-Tricks.com 上找到):

/** Smooth Scrolling Functionality **/
jQuery(document).ready(function($) {
  function filterPath(string) {
  return string
    .replace(/^\//,'')
    .replace(/(index|default).[a-zA-Z]{3,4}$/,'')
    .replace(/\/$/,'');
  }
  var locationPath = filterPath(location.pathname);
  var scrollElem = scrollableElement('html', 'body');
  var urlHash = '#' + window.location.href.split("#")[1];

  $('a[href*=#]').each(function() {
    $(this).click(function(event) {
    var thisPath = filterPath(this.pathname) || locationPath;
    if (  locationPath == thisPath
    && (location.hostname == this.hostname || !this.hostname)
    && this.hash.replace(/#/,'') ) {
      var $target = $(this.hash), target = this.hash;
      if (target) {
        var targetOffset = $target.offset().top;
          event.preventDefault();
          $(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
            location.hash = target;
          });
      }
    }
   });  
  });

  // use the first element that is "scrollable"
  function scrollableElement(els) {
    for (var i = 0, argLength = arguments.length; i <argLength; i++) {
      var el = arguments[i],
          $scrollElement = $(el);
      if ($scrollElement.scrollTop()> 0) {
        return el;
      } else {
        $scrollElement.scrollTop(1);
        var isScrollable = $scrollElement.scrollTop()> 0;
        $scrollElement.scrollTop(0);
        if (isScrollable) {
          return el;
        }
      }
    }
    return [];
  }

});
/** END SMOOTH SCROLLING FUNCTIONALITY **/

它工作得很好,除了一件事,我希望它在有人直接访问 url 的情况下工作,例如http://domain.com/page.html#anchor它在页面加载时从顶部平滑滚动到该锚点,现在它立即转到页面锚点,除非他们点击在锚上。我希望这是有道理的。

4

5 回答 5

26

如果现在回答还不算太晚,那么你就去吧......这是对 PSR 代码的修改,它实际上可以在加载时平滑滚动页面:

http://jsfiddle.net/9SDLw/1425/

$(function(){
    $('html, body').animate({
        scrollTop: $( $('#anchor1').attr('href') ).offset().top
    }, 2000);
    return false;
});

更好的版本:

http://jsfiddle.net/9SDLw/1432/

$(function(){
    $('html, body').animate({
        scrollTop: $('.myclass').offset().top
    }, 2000);
    return false;
});

在此脚本中您需要做的就是将“myclass”替换为您要滚动到的页面上的控件的类或 ID。

纳维德

于 2013-07-23T21:48:41.043 回答
5

我发现这是迄今为止做我想做的最好的方法:

/** Smooth Scrolling Functionality **/
var jump=function(e)
{
    //alert('here');
   if (e){
       //e.preventDefault();
       var target = jQuery(this).attr("href").replace('/', '');
   }else{
       var target = location.hash;
   }

   jQuery('html,body').animate(
   {
       scrollTop: (jQuery(target).offset().top) - 100
   },500,function()
   {
       //location.hash = target;
   });

}

jQuery('html, body').hide();

jQuery(document).ready(function($)
{
    $(document).on('click', 'a[href*=#]', jump);

    if (location.hash){
        setTimeout(function(){
            $('html, body').scrollTop(0).show();
            jump();
        }, 0);
    }else{
        $('html, body').show();
    }
});
/** END SMOOTH SCROLLING FUNCTIONALITY **/
于 2013-05-16T17:35:36.570 回答
2

@爪子发帖...

我发现这是迄今为止做我想做的最好的方法:

我2,但我不得不对其进行一些更改。

var target = jQuery(this).attr("href").replace('/', '');

1. 为什么要替换“/”?

就我而言,它使网址...

“http://[我的域]/[我的页面]/[我的锚]”......看起来像......

“http://[我的域名]/[我的页面]/[我的主播]”

和...

2. Chrome(我当前版本:40.0.2214.115 m)不喜欢下面这行...

   jQuery('html,body').animate(
   {
       scrollTop: (jQuery(target).offset().top) - 100
   },500,function()
   {
       //location.hash = target;
   });

未捕获的错误:语法错误,无法识别的表达式:http://[我的域]/[我的页面]/[我的锚]

我发现当“target”是像 http:// .../#anchor 这样的完整 href 时,jQuery 不能使用“offset”。

修复 1。

替换:

var target = jQuery(this).attr("href").replace('/', '');

和:

var target = jQuery(this).attr("href");

修复 2。

替换:

   jQuery('html,body').animate(
   {
       scrollTop: (jQuery(target).offset().top) - 100
   },500,function()
   {
       //location.hash = target;
   });

和:

if(target.search('/') === -1) { //only do scroll if page with anchor is the currently loaded page
   jQuery('html,body').animate(
   {
       scrollTop: (jQuery(target).offset().top) - 100
   },500"easeInOutExpo"); // requires easing
}

现在对我来说完美无缺,没有任何错误。请对此发表评论,因为我是 js/jquery 的新手...

谢谢@Talon

于 2015-02-28T12:39:02.207 回答
0

您可以使用.scrollTop()

$('a').click(function(){
    $('html, body').animate({
        scrollTop: $( $.attr(this, 'href') ).offset().top
    }, 2000);
    return false;
});

看这里

于 2013-05-14T03:57:40.647 回答
0

如今,您可以仅使用 javascript 滚动页面加载。我喜欢设置一个setTimeout只是在滚动之前给它一些时间。

if (window.location.hash) {
  var hash = window.location.hash;
  var element = document.querySelector(hash);
  
  if (element)
    element.scrollIntoView({
      behavior: "smooth",
      block: "nearest",
      inline: "start",
    });
}
于 2020-09-09T11:36:47.103 回答