gpt4 book ai didi

javascript - 滚动条和平滑滚动代码

转载 作者:行者123 更新时间:2023-11-28 01:48:02 25 4
gpt4 key购买 nike

请检查此页面(例如)

http://www.christinamichael.in/create-a-powerful-human-disintegration-effect-in-photoshop

我想知道我怎么会有这样的东西?

我希望 firefox 和 chrome 支持一些东西。

最佳答案

您可以使用 ANCHOR 标签进行平滑滚动。以下结果。

$(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 - 滚动条和平滑滚动代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21430684/

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