0

我想我已经想出了如何在http://mode87.com/untame/demo/parallax/的帮助下使用引导程序实现视差滚动,但我无法弄清楚如何在引导程序中进行平滑滚动,就像它在SMINT:http ://www.outyear.co.uk/smint/demo/ - 我怎么能在引导程序中做到这一点?到目前为止,我有这个:http ://ronhome.no-ip.org/bootstrap/

谢谢!

4

1 回答 1

4

在此处查看演示

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;
});
于 2013-10-12T06:27:51.093 回答