Simple Gesture for Android에 대한 리뷰
Simple Gesture for Android 제작자: utubo
Firefox 사용자 12979178 님의 리뷰
5점 만점에 5점
Firefox 사용자 12979178 님, 7년 전It helps a lot!THANKS.
Could you please add pageUP and pageDOWN gesture?
Could you please add pageUP and pageDOWN gesture?
개발자 답글
7년 전에 게시됨You can pageUp and pageDown with custom-gesture.
Try these code.
------------------------------
/** @name pageUp */
window.scrollByPages(-1, { behavior: 'smooth' });
------------------------------
------------------------------
/** @name pageDown */
window.scrollByPages(1, { behavior: 'smooth' });
------------------------------
Thanks.
Try these code.
------------------------------
/** @name pageUp */
window.scrollByPages(-1, { behavior: 'smooth' });
------------------------------
------------------------------
/** @name pageDown */
window.scrollByPages(1, { behavior: 'smooth' });
------------------------------
Thanks.