gpt4 book ai didi

页面加载时 jQuery 平滑滚动

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

我正在使用此 jQuery 脚本进行平滑滚动(可在 CSS-Tricks.com 上找到):

/** Smooth Scrolling Functionality **/
jQuery(document).ready(function($) {
function filterPath(string) {
return string
.replace(/^\//,'')
.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
.replace(/\/$/,'');
}
var locationPath = filterPath(location.pathname);
var scrollElem = scrollableElement('html', 'body');
var urlHash = '#' + window.location.href.split("#")[1];

$('a[href*=#]').each(function() {
$(this).click(function(event) {
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
var $target = $(this.hash), target = this.hash;
if (target) {
var targetOffset = $target.offset().top;
event.preventDefault();
$(scrollElem).animate({scrollTop: targetOffset}, 400, function() {
location.hash = target;
});
}
}
});
});

// use the first element that is "scrollable"
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}

});
/** END SMOOTH SCROLLING FUNCTIONALITY **/

它的效果非常棒,除了一件事之外,我希望它能够在有人直接访问该网址的情况下工作,例如http://domain.com/page.html#anchor 它在页面加载时从顶部平滑滚动到该 anchor ,现在它会立即转到页面 anchor ,除非他们单击了 anchor 。我希望这是有道理的。

最佳答案

如果现在回答还不算太晚,那么就在这里......以下是对 PSR 代码的修改,实际上适用于加载时页面的平滑滚动:

http://jsfiddle.net/9SDLw/1425/

$(function(){
$('html, body').animate({
scrollTop: $( $('#anchor1').attr('href') ).offset().top
}, 2000);
return false;
});

更好的版本:

http://jsfiddle.net/9SDLw/1432/

$(function(){
$('html, body').animate({
scrollTop: $('.myclass').offset().top
}, 2000);
return false;
});

在此脚本中您需要做的就是将“myclass”替换为您要滚动到的页面上的控件的类或 ID。

纳维德

关于页面加载时 jQuery 平滑滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16534851/

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