机核网 GADIO 时间轴操作优化

增加时间轴鼠标滚轮控制(新版web页面时间轴文字说明官方已经支持选中复制了)

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name           机核网 GADIO 时间轴操作优化
// @namespace  http://zhangbohun.github.io/
// @version        0.2
// @description  增加时间轴鼠标滚轮控制(新版web页面时间轴文字说明官方已经支持选中复制了)
// @author         zhangbohun
// @match         *://www.gcores.com/*
// @grant          none
// @run-at 	     document-end
// ==/UserScript==
'use strict';

window.onload = function () {
    //增加时间轴鼠标滚轮控制
	document.onmousewheel=function(event){//由于节点会重新挂载,所以使用委托实现
	//console.log(event.target)
	if (document.querySelector(".gpf_body")&&document.querySelector(".gpf_body").contains(event.target)) {
		if (event.wheelDelta > 0) {
			if(document.querySelector(".gpf_playingTimeline_l a")){
				document.querySelector(".gpf_playingTimeline_l a").click();
			}
		}
		else {
			if(document.querySelector(".gpf_playingTimeline_r a")){
				document.querySelector(".gpf_playingTimeline_r a").click();
			}
		}
		event.preventDefault();//阻止页面滚动
		}
	}
};