有没有办法让scrollspy在不使用nav
或list-group
的情况下工作?
scrollspy的引导程序文档说明,它只能在nav
或list group
组件上使用。DOCUMENTATION
工作原理
Scrollspy有几个正常运行的要求:
如果要从源代码构建JavaScript,则需要util.js。
它必须用于引导导航组件或列表组。
Scrollspy要求监视的元素position: relative;
,通常是<body>
。
监视<body>
以外的元素时,请确保设置height
并应用overflow-y: scroll;
。
锚(<a>
)是必需的,并且必须指向具有该id的元素。
This question类似,但对于Bootstrap 3(不是4),答案是添加role="tablist"
。好吧,这里不行。关于scrollspy有很多问题,但主要是针对Bootstrap 3。
代码:
/*DEMO*/
nav{top:50%;left:1.5rem;transform:translateY(-50%)}
nav a{display:block;width:20px;height:20px;margin-bottom:.5rem}
/*COLORS*/
nav a{background:black}
nav a.active{background:red}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body data-spy="scroll" data-target="#nav" data-offset="0">
<section class="container-fluid">
<div class="row">
<div id="item-1" class="col-12 vh-100 bg-primary"></div>
<div id="item-2" class="col-12 vh-100 bg-warning"></div>
<div id="item-3" class="col-12 vh-100 bg-danger"></div>
<div id="item-4" class="col-12 vh-100 bg-success"></div>
<div id="item-5" class="col-12 vh-100 bg-info"></div>
</div>
</section>
<nav id="nav" class="d-flex flex-column position-fixed">
<a href="#item-1"></a>
<a href="#item-2"></a>
<a href="#item-3"></a>
<a href="#item-4"></a>
<a href="#item-5"></a>
</nav>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
</body>
</html>
最佳答案
您可以通过使用必需的类list-group-item
来克服这个问题,并按照您的需要重置CSS:
/*DEMO*/
nav {
top: 50%;
left: 1.5rem;
transform: translateY(-50%)
}
#nav a {
display: block;
width: 20px;
height: 20px;
margin-bottom: .5rem;
padding: 0;
border: none;
border-radius: 0;
}
/*COLORS*/
#nav a {
background: black
}
#nav a.active {
background: red
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
</head>
<body data-spy="scroll" data-target="#nav" data-offset="0">
<section class="container-fluid">
<div class="row">
<div id="item-1" class="col-12 vh-100 bg-primary"></div>
<div id="item-2" class="col-12 vh-100 bg-warning"></div>
<div id="item-3" class="col-12 vh-100 bg-danger"></div>
<div id="item-4" class="col-12 vh-100 bg-success"></div>
<div id="item-5" class="col-12 vh-100 bg-info"></div>
</div>
</section>
<nav id="nav" class="d-flex flex-column position-fixed">
<a href="#item-1" class="list-group-item"></a>
<a href="#item-2" class="list-group-item"></a>
<a href="#item-3" class="list-group-item"></a>
<a href="#item-4" class="list-group-item"></a>
<a href="#item-5" class="list-group-item"></a>
</nav>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
</body>
</html>
关于html - Bootstrap 4-如何在不使用导航或列表组的情况下使SCROLLSPY工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54681458/