Lessons touchpad swipe navigation

Navigate your lessons with swipe gesture ("wheel" event)

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Lessons touchpad swipe navigation
// @namespace    wanikani
// @version      0.1
// @description  Navigate your lessons with swipe gesture ("wheel" event)
// @author       mrowqa
// @match        https://www.wanikani.com/lesson/session
// @grant        none
// ==/UserScript==

$(document).ready(function() {
    'use strict';

    function touchpadScrollHandler(event) {
        //console.log("X: " + event.deltaX + ", " + event.deltaY + ", " + event.deltaZ);
        if (touchpadScrollHandler.locked === true) {
            return;
        }
        //console.log("next");

        var threshold = 3;  // for mouse event deltaX value, 10-20 slow swipe, >100 fast swipes
        var cooldown = 2000; // in miliseconds
        var leftKeyCode = 37;
        var rightKeyCode = 39;

        var scroll = function (keyCode) {
            $("body").trigger(
                $.Event("keyup", {keyCode: keyCode, which: keyCode})
            );
            touchpadScrollHandler.locked = true;
            setTimeout(function() {
                touchpadScrollHandler.locked = false;
            }, cooldown);
        };

        if (event.deltaX < -threshold) {
            scroll(leftKeyCode);
        }
        if (event.deltaX > threshold) {
            scroll(rightKeyCode);
        }
    }

    touchpadScrollHandler.locked = false;
    document.addEventListener("wheel", touchpadScrollHandler, {passive: true});
});