平滑滚动以锚定在不同的页面上

时间:2016-01-31 09:33:43

标签: javascript jquery smooth-scrolling

我在谷歌上搜索了如何平滑滚动到不同页面上的锚点。我尝试了一些方法,然而,他们似乎没有使用我已编写的代码,可以在一个页面上平滑滚动。

基本上我已将我的联系部分锚定在索引页面上,并且当我点击导航栏上的联系人链接时,希望我的其他页面平滑滚动到该部分。但目前所做的一切都是直接跳到锚点而不是从顶部滚动。

这是我的代码:

$(document).ready(function() {
    $('a[href^="#"]').not("#quote-carousel a, ul.nav-pills a, div#accordian a").on("click", function(a) {
        a.preventDefault();
        var b = this.hash,
            c = $(b);
        $("html, body").stop().animate({
            scrollTop: c.offset().top - 50
        }, 900, "swing", function() {
            window.location.hash = b
        })
    })
});

2 个答案:

答案 0 :(得分:1)

您可以开始滚动哈希更改以及页面加载时。因此,您可以滚动到目标元素并创建深层链接。

因此,您的方法与我的方法之间的主要区别在于,首先更改哈希值(或不要阻止它)并监听哈希更改事件。

我就是这样做的:

JavaScript的:

$(document).ready(function() {
    // check for hash when page has loaded
    if (getHash() != null) {
        checkForScrolling();
    }
});

// listen for hash change event here
window.onhashchange = function() {
    checkForScrolling();
};

// return hash if so or null if hash is empty
function getHash() {
    var hash = window.location.hash.replace('#', '');
    if (hash != '') {
        return hash;
    } else {
        return null;
    }
}

// this function handles your scrolling
function checkForScrolling() {
    // first get your element by attribute selector
    var elem = $('[data-anchor="' + getHash() + '"]');

    // cheeck if element exists
    if (elem.length > 0) {
        $('html, body').stop().animate({
            scrollTop: elem.offset().top
        }, 300);
    }
}

使用HTML示例:

<!DOCTYPE html>
<html>
    <head>
        <title>Smooth Scrolling</title>
        <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-2.1.4.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(document).ready(function() {
                // check for hash when page has loaded
                if (getHash() != null) {
                    checkForScrolling();
                }
            });
            // check for hash when hash has changed
            window.onhashchange = function() {
                checkForScrolling();
            };
            // return hash if so or null if hash is empty
            function getHash() {
                var hash = window.location.hash.replace('#', '');
                if (hash != '') {
                    return hash;
                } else {
                    return null;
                }
            }
            // this function handles your scrolling
            function checkForScrolling() {
                // first get your element by attribute selector
                var elem = $('[data-anchor="' + getHash() + '"]');
                // cheeck if element exists
                if (elem.length > 0) {
                    $('html, body').stop().animate({
                        scrollTop: elem.offset().top
                    }, 300);
                }
            }
        </script>
        <style type="text/css">
            body { font-family: Helvetica }
            section { position: relative; margin-bottom:10px; padding:20px; height: 300px; background-color: #eee; }
            section a { display:block; position: absolute; bottom: 10px; }
        </style>
    </head>
    <body>
        <div>
            <h1 data-anchor="start">Smooth Scrolling</h1>
            <ul>
                <li><a href="#1">Scroll to Anchor 1</a></li>
                <li><a href="#2">Scroll to Anchor 2</a></li>
                <li><a href="#3">Scroll to Anchor 3</a></li>
            </ul>
            <section>
                <h2 data-anchor="1">First Anchor</h2>
                <a href="#start">Back to top</a>
            </section>
            <section>
                <h2 data-anchor="2">Second Anchor</h2>
                <a href="#start">Back to top</a>
            </section>
            <section>
                <h2 data-anchor="3">Third Anchor</h2>
                <a href="#start">Back to top</a>
            </section>
        </div>
    </body>
</html>

答案 1 :(得分:0)

在点击锚标签时添加以下代码,考虑到html如下

<div class="class_name"><a href="#contact">Contact</a></div>

为上面的html添加代码

$(document).on('click', '.class_name a', function(e) {
            e.preventDefault();
            var target = $(this).attr('href'), $target = $(target); {
                $('html, body').stop().animate({
                    'scrollTop' : $target.offset().top - 50
                }, 900, 'swing', function() {
                    window.location.hash = target;
                });
            }
});

以上-50值的变化取决于标题高度。