gpt4 book ai didi

javascript - 使用 jquery 平滑滚动

转载 作者:行者123 更新时间:2023-12-03 06:01:32 25 4
gpt4 key购买 nike

我有 html 页面和菜单

菜单:

<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li>
<a href="#info">info</a>
</li>
...
</ul>
</div>

部分内容:

<div id="info" class="row">
<div class="col-lg-12">
<h1>Title</h1>
<p>Lorem Ipsum</p>
</div>
</div>

我想为 anchor 添加平滑的页面滚动。所以我尝试了:

$(document).ready(function($) {

$('a[href*=#]:not([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
}, 1000);
return false;
}
}
});

});

但是这不起作用。而且滚动不流畅。

最佳答案

将您的 jQuery 函数替换为:

$(function() {
$('a[href*="#"]:not([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
}, 1000);
return false;
}
}
});
});

关于javascript - 使用 jquery 平滑滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39733954/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com