flutter-webview-windows
flutter-webview-windows copied to clipboard
Web page nesting scroll failed
Expected Behaviour: When the mouse is placed on / hovered on the (webpage) container and scrolled, the scroll bar inside the smaller container should be considered and not the main page scroll bar (if it exists)
Current Behaviour: The mouse location doesn't really seem to matter, it will always interact with the main page (largest) scrollbar. @jnschulze
same issue...
same issue...
function scrollMouse(event) {
console.log(">>> event:: ", event);
}
if (navigator.userAgent.toLowerCase().indexOf('firefox') === -1) {
document.addEventListener('mousewheel', scrollMouse);
} else {
document.addEventListener('DOMMouseScroll', scrollMouse);
}
I have use this code to test if mouse scroll event has triggered,the anwser is yes.but the page don't work.
同样的问题,是否有解决方案?