解决方法分为软硬件方法。
1、硬件方法:
将鼠标倒置,滚轮向下,找一个类似沙发等相对柔软的地方反复滚动,通常可以临时解决回跳问题。但通常一段时间后问题会重现。
2、软件方法:
直接使用脚本强行控制鼠标。例如设置鼠标滚动时有一个T秒的惯性。在T秒内,鼠标鼠标由于惯性将无法回跳。但产生的问题时高速上下滚动鼠标滚轮时鼠标会因为惯性而"不听话"
具体操作:
下载AutoHotKey。随后新建一个.ahk脚本,输入以下代码:
inertiaThreshold := 0.2
lastDirection := 0
lastEventTime := 0
HandleWheelEvent(direction) {
global lastDirection, lastEventTime, inertiaThreshold
currentTime := A_TickCount / 1000.0
timeDiff := currentTime - lastEventTime
if (timeDiff < inertiaThreshold) {
actualDirection := lastDirection
} else {
actualDirection := direction
}
lastDirection := actualDirection
lastEventTime := currentTime
if (actualDirection == 1) {
Send "{WheelUp}"
} else if (actualDirection == -1) {
Send "{WheelDown}"
}
}
WheelUp:: {
HandleWheelEvent(1)
}
WheelDown:: {
HandleWheelEvent(-1)
}
随后使用AutoHotkey的编译器对代码进行编译。编译后生成一个exe文件,点击即可。