gpt4 book ai didi

twitter-bootstrap - 平滑滚动和 Bootstrap 选项卡冲突

转载 作者:行者123 更新时间:2023-12-01 10:55:54 24 4
gpt4 key购买 nike

我正在为我的中小企业开发一个网站。我正在为单页网站使用带有 smoothscroll 脚本的 Bootstrap 。

问题是,我需要一个带有各个服务信息的选项卡式 Pane ,但这与平滑滚动脚本冲突,这意味着当我单击一个选项卡时,浏览器会变得困惑。当我禁用 smoothscroll 脚本时,选项卡工作正常。有没有办法让我同时拥有这两种功能?

我现在使用的平滑滚动脚本是...取自 CSS-tricks.com

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

// Any links with hash tags in them (can't do ^= because of fully qualified URL potential)
$('a[href*=#]').each(function() {

// Ensure it's a same-page link
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {

// Ensure target exists
var $target = $(this.hash), target = this.hash;
if (target) {

// Find location of target
var targetOffset = $target.offset().top;
$(this).click(function(event) {

// Prevent jump-down
event.preventDefault();

// Animate to target
$(scrollElem).animate({scrollTop: targetOffset}, 400, function() {

// Set hash in URL after animation successful
location.hash = target;

});
});
}
}

});

// Use the first element that is "scrollable" (cross-browser fix?)
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 [];
}

});
</script>

最佳答案

这一行:

$('a[href*=#]').each(function() {

尝试替换为:

$('a[href*=#]:not([data-toggle="tab"])').each(function() {

关于twitter-bootstrap - 平滑滚动和 Bootstrap 选项卡冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15230608/

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