我正在使用fullpage.js,我将屏幕分成两半。当您单击顶部 - 向上时向上滚动,当您在向下部分单击时,您将向下滚动。
我讨厌在转换过程中鼠标光标从s-resize或n-resize变为普通光标。
任何解决方案?
您可以在此处查看:http://alvarotrigo.com/fullPage/examples/methods.html 如果单击“moveSection ...”按钮,它的行为方式相同。
JS
$('#up').click(function(e){
e.preventDefault();
$.fn.fullpage.moveSectionUp();
});
$('#down').click(function(e){
e.preventDefault();
$.fn.fullpage.moveSectionDown();
});
CSS
#down {
width:100%;
height:50%;
top:50%;
position:fixed;
z-index:10000;
cursor:s-resize;
}
#up {
width:100%;
height:50%;
top:0;
position:fixed;
z-index:10000;
cursor:n-resize;
}