-1
我試着用這個代碼重寫瀏覽器的鼠標滾輪事件:攔截鼠標滾輪傾斜事件?
// Wheel handler
function wheel(event){
var ret = true;
if (event.wheelDelta) {
// Tilt to the left
if (event.wheelDeltaX > 0) {
alert('Left');
//window.history.back();
ret = false;
}
// Tilt to the right
if (event.wheelDeltaX < 0) {
alert('Right');
//window.history.forward();
ret = false;
}
}
event.returnValue = ret;
}
// Bind the onmousewheel event to our handler
window.onmousewheel = document.onmousewheel = wheel;
但似乎當我左傾斜/右,沒有任何反應。這個用戶腳本有什麼問題?謝謝。
試試這個來代替:https://jsfiddle.net/0o1eeL2L/ – icecub