我知道有很多偉大的插件用於此目的,但我覺得這是我想用很多東西,所以我想看看它是如何完成的!我知道你能做到這樣:jQuery 100%垂直滾動(幻燈片滾動)
HTML:
<div id="section1">
<div id="section2">
CSS:
#section1{
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
}
#section2{
height: 100%;
width: 100%;
position: absolute;
top: 100%;
left: 0;
}
#section1:active{
position: fixed;
}
#section2:active{
position: fixed;
}
的jQuery:
$(".wrapper").on('mousewheel DOMMouseScroll', function (event) {
if (event.originalEvent.wheelDelta > 0 || event.originalEvent.detail < 0) {
$('.slide-1').addClass('active');
} else {
$('.slide-2').addClass('active');
}
});
我想學習如何做到這一點的最好辦法。我很抱歉,代碼只是我寫的很快。
[fullPage js](http://www.alvarotrigo.com/fullPage/)值得一看 –
我不想使用庫 –