我有一个 jQuery 滚动设置,但持续时间不能正常工作。在 Wordpress 网站的“关于页面”上,我想使用 jQuery,以便在单击照片时,它会向下滚动到相应的 div。滚动正在工作,但是,持续时间不是。滚动大约需要 1/4 秒,我设置持续时间的速度无关紧要。我所指的网站可以在以下位置看到:http ://teamcoding.ca/corporate/about-test/
下面是 jQuery 滚动的源代码。
$(function(){
$('a[href*=.staff_photos_indiv]').click(function() {
if (location.pathname.replace(/^\//,") == this.pathname.replace(/^\//,") && location.hostname == this.hostname) {
var $target = $target;
$target = $(this.hash);
$target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
if ($target.length) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset}, {easing:'easeInOutExpo',duration:1600});
return false;
}
}
});
});