私はjqueryを使ってスクロールをシミュレートしようとしています。技術的にはできますが、それは本当に大まかで厄介です。jqueryを使用して滑らかなスクロールをシミュレートするにはどうすればよいですか?
JS:
$(document).ready(function(){
$(this).bind('mousewheel', function(e){
if(e.originalEvent.wheelDelta/120 > 0) {
movePage();
}
});
var page1top = 0;
function movePage() {
page1top = page1top - 1;
// page1 is the page that i want to move up when people scroll down.
$('#page1').css('top': page1top + '%');
}
});
HTML:
<div id='container'>
<div id='page1'></div>
</div>
CSS:私はちょうど私は、これがスムーズになるだろうか
#container {
position: absolute;
height: 100%;
width: 100%;
overflow: hidden;
z-index: -100;
}
#page1 {
width: 100%;
height: 500%;
z-index: 0;
}
を思ったんだけど。プラグインはありません、ありがとう。
全体のコードを見てみましょう。 どうすればうまくいくのですか? * { - webkit-transition:1s; 移行:1秒; -webkit-transition-timing-function:キュービックベジェ(0.42,0,0.58,1); transition-timing-function:cubic-bezier(0.42,0,0.58,1);} 最適ではなく、遅延がありますが、数字でスムーズに再生してください。 –