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.