您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Navigate your lessons with swipe gesture ("wheel" event)
// ==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}); });