平滑滚动到锚点。不同的抵消。媒体查询。排除一些锚点

时间:2015-08-12 20:52:36

标签: javascript jquery offset anchor-scroll scroll-position

情况:我想平滑滚动到每个锚链接的锚链接。接下来,我想为特定锚链接设置偏移量(例如,仅导航链接,但网站上没有锚链接)。最后我想添加媒体查询..因此偏移位置应仅适用于定义的浏览器大小(例如" max-width:767px")。

第一个问题:如果禁用了其他功能(偏移定位),我的平滑滚动功能才有效。两者都不起作用。有帮助吗? 第二个问题:我不知道如何减少"抵消定位"到"导航"仅限锚链接。

// Smooth Scrolling
$(function () {
  'use strict';
  $('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) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 300);  
        return false;
      }
    }
  });
});

// Offset Positioning
function offsetAnchor() {
  'use strict';
  if (location.hash.length !== 0) {
    window.scrollTo(window.scrollX, window.scrollY - 0); 
  }
}

// Offset Positioning with media query
function offsetAnchor() {
  'use strict';
  if (matchMedia('only screen and (max-width: 767px)').matches) {
    if (location.hash.length !== 0) {
      window.scrollTo(window.scrollX, window.scrollY - 220);
    }
  }
}

// This will capture hash changes while on the page
$(window).on("hashchange", function () {
  'use strict';
  offsetAnchor();
});

我通过搜索此处和其他网站获得了代码,我自己也没有写过。我想尽快学习javascript和jquery的基础知识。但是现在从大家那里得到帮助真是太好了。非常感谢!

鲍里斯

2 个答案:

答案 0 :(得分:0)

好的,我在这里找到了其他一些代码: Smooth scrolling when clicking an anchor link

我已经复制了一次以添加一些媒体查询,偏移和特定类(ul.nav a)。我希望没有问题 - 直到现在它对我来说非常好。希望这是一个有用的解决方案!甚至代码也更小。

只有一个“问题”:页面滚动两次。首先它滚动到锚点,第二次它再次向上滚动220px(偏移量)。 如果页面只能直接滚动一次到偏移位置,那就太棒了!

// Smooth Scrolling
var $root = $('html, body');
$('a').click(function () {
  'use strict';
  $root.animate({
    scrollTop: $($.attr(this, 'href')).offset().top
  }, 500);
  return false;
});

// Smooth Scrolling with offset and media-query
var $root = $('html, body');
$('ul.nav a').click(function () {
  'use strict';
  if (matchMedia('only screen and (max-width: 767px)').matches) {
    $root.animate({
      scrollTop: $($.attr(this, 'href')).offset().top - 220
    }, 500);
    return false;
  }
});

答案 1 :(得分:0)

最后,我为平滑滚动问题进行了优化。我认为媒体查询更清晰,更容易理解。另外奇怪的是“向下滚动并再次滚动一些像素” - 效果现在已经消失。

// smooth scrolling

function screenMin768() {
  'use strict';
  var mq = window.matchMedia("(min-width: 768px)");
  return mq.matches;
}

function screenMax767() {
  'use strict';
  var mq = window.matchMedia("(max-width: 767px)");
  return mq.matches;
}

console.log(screenMin768() + " " + screenMax767());

if (screenMin768()) {
  var $root = $('html, body');
  $('a').click(function () {
    'use strict';
    $root.animate({
      scrollTop: $($.attr(this, 'href')).offset().top - 55 // hier die variable aufrufen: "+ offset55"
    }, 500);
    return false;
  });
}

// offset for normal a-tags, excluding mobile nav: ul.nav a
if (screenMax767()) {
  var $root = $('html, body');
  $('a:not(ul.nav a)').click(function () {
    'use strict';
    $root.animate({
      scrollTop: $($.attr(this, 'href')).offset().top + 4
    }, 500);
    return false;
  });
}

// offset for mobile nav: ul.nav a
if (screenMax767()) {
  var $root = $('html, body');
  $('ul.nav a').click(function () {
    'use strict';
    $root.animate({
      scrollTop: $($.attr(this, 'href')).offset().top - 270
    }, 500);
    return false;
  });
}

// offset correction for go-to-top button on mobile screen width
if (screenMax767()) {
  var $root = $('html, body');
  $('a.go-to-top').click(function () {
    'use strict';
    $root.animate({
      scrollTop: $($.attr(this, 'href')).offset().top - 60
    }, 500);
    return false;
  });
}

我只是一名设计师,所以我通过反复试验得到了它。我不了解每一行,例如“console.log ...”。我敢打赌代码可以减少更多。

因此,如果有人想要优化/减少代码,那就太棒了! :)