anka-213 / webcomic_reader

Webcomic Reader userscript at
https://openuserjs.org/scripts/anka-213/Webcomic_Reader
MIT License
120 stars 27 forks source link

Suggestion: scroll to go to next/previous page #17

Open Darayavaush opened 8 years ago

Darayavaush commented 8 years ago

Something like this:

$('body').bind('DOMMouseScroll', function(e) {
    e.preventDefault();
    if (e.originalEvent.detail < 0) {
        $('#wcr_btn-1').click();
    }
    else {
        $('#wcr_btn1').click();
    }
});