gpt4 book ai didi

css - 平滑而不仅仅是 Bootstrap 中的视差滚动

转载 作者:太空宇宙 更新时间:2023-11-03 21:48:02 24 4
gpt4 key购买 nike

我想我已经想出如何在 http://mode87.com/untame/demo/parallax/ 的帮助下使用 Bootstrap 实现视差滚动但我不知道如何像在 SMINT 中那样在 bootstrap 中进行平滑滚动:http://www.outyear.co.uk/smint/demo/ - 我怎样才能在 Bootstrap 中做到这一点?到目前为止我有这个:http://ronhome.no-ip.org/bootstrap/

谢谢!

最佳答案

See the Demo here

HTML

<ul>
<li><a href="#one">Menu</a></li>
<li><a href="#two">Menu</a></li>
<li><a href="#three">Menu</a></li>
</ul>
<div id="one">
Section one
</div>
<div id="two">
Section two
</div>
<div id="three">
section three
</div>

CSS

#one {
height: 400px;
}
#two {
height: 400px;
}
#three {
height: 400px;
}

JS

$('a').click(function(){
$('html, body').animate({
scrollTop: $( $.attr(this, 'href') ).offset().top
}, 500);
return false;
});

关于css - 平滑而不仅仅是 Bootstrap 中的视差滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19331194/

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