gpt4 book ai didi

javascript - 使用平滑滚动片段,将元素置于页面中心

转载 作者:行者123 更新时间:2023-12-03 03:03:57 27 4
gpt4 key购买 nike

我正在使用这个脚本。

$(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;
}
}
});
});

除了一件事之外,它运行良好。当我单击 anchor 并向下滚动时,一半的文本被切断。我想进行偏移或其他操作,因此屏幕顶部的文本上方有一点空白,如下所示:

enter image description here

目前,它看起来像这样:

enter image description here

最佳答案

尝试如下:

scrollTop: target.offset().top - target.height()

在顶部留出一点空间...

<小时/>

或者你可以做类似的事情(不确定,需要测试):

var video = target.next() // considering that is the video block
var centerizeHeight = $(window).height() - (target.height() + video.height())
centerizeHeight = (centerizeHeight > 0) centerizeHeight : 1
//...
scrollTop: target.offset().top - (centerizeHeight/2)

注意:确保您的文档类型位于页面中

关于javascript - 使用平滑滚动片段,将元素置于页面中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47256219/

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