Simple Gesture for Android 的评价
Simple Gesture for Android 作者: utubo
utubo 的回应
开发者回应
发布于 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.