javascript 顺畅滚动jQuery Bootstrap 4
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 顺畅滚动jQuery Bootstrap 4相关的知识,希望对你有一定的参考价值。
<script>
$('body').scrollspy({
target: '#main-nav'
});
//Add smooth scrolling
$('#main-nav a').on('click', function(e){
//CHeck for a hash value
if(this.hash !== ''){
//Prevent default behavior
e.preventDefault();
//Store hash
const hash = this.hash;
//Animate smooth scroll
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 900, function(){
//Add hash to URL after scroll
window.location.hash = hash;
});
}
})
</script>
以上是关于javascript 顺畅滚动jQuery Bootstrap 4的主要内容,如果未能解决你的问题,请参考以下文章
javascript 顺畅滚动
顺畅滚动到顶部
滚动完成前Recyclerview滚动不顺畅
iCarousel 滚动不顺畅
ScrollView 内的 Recyclerview 滚动不顺畅
TextView 滚动不顺畅