We often encounter this situation when doing development: a.swf is added to the web page. There are scroll bars on both a.swf and html pages. The project manager proposed a BT requirement --- when the mouse scrolls a.swf, the html page does not scroll, otherwise the html page scrolls! What should be done? Method 1 : 1. When the mouse moves into the scrolling area of a.swf: tell JS to remove the browser mouse scrolling monitor. 2. When the mouse moves out of the scrolling area of a.swf: tell JS to add a browser mouse scroll listener. 3.a.swf's wmode is set to "window". Summary: Setting wmode to "window" may not meet project requirements, which makes a.swf cover any html page below it; in addition, when the mouse moves into the scrolling area of a.swf and presses Alt+Tab to switch pages, JS is not notified to add browser mouse scrolling monitoring, so after the operation, there is no scrolling processing when switching back to the html page Method 2 : 1. a.swf cancels its own mouse scrolling monitoring event and adds a scrolling processing interface for JS to call, such as wheelToFlash(value). 2. When the mouse moves into the scrolling area of a.swf: inform JS, for example, mouseIsInFlashWheelRange=true. 3. When the mouse moves out of the scrolling area of a.swf: inform JS, for example, mouseIsInFlashWheelRange=false; 4.JS monitors mouse scroll events. In the event monitoring processing function, we need to make the following judgments Javascript code: Copy code The code is as follows:if(mouseIsInFlashWheelRange==true) { /**Call the interface provided by a.swf to make a.swf simulate scrolling*/ /**"flash" is the ID of a.swf embedded in HTML, value is the scroll value of HTML scroll table*/ document.getElementById("flashID").wheelToFlash(value); /**Prevent bubbling of mouse events on HTML pages, usually event.preventDefault()*/ event.preventDefault(); } else { /**Handle normal scrolling of HTML, we don't need to do anything*/ } Summary : Compared with method 1, there is no restriction of wmode="window"; the Alt+Tab problem still exists. Note : When writing JS code, we need to pay attention to compatibility issues. Different browsers listen to mouse events and obtain scroll values differently! |
<<: Detailed explanation of Linux using ss command combined with zabbix to monitor socket
>>: Implement QR code scanning function through Vue
Table of contents 1. Gojs Implementation 1. Drawi...
Install Required Files Yum install openssl-* -y C...
Phenomenon Start the Docker container docker run ...
Because what I wrote before was not detailed enou...
Taking Windows as an example, Linux is actually t...
How to implement text icons through CSS /*icon st...
Preface As we all know, by default, the MySQL ins...
VUE uses vue-seamless-scroll to automatically scr...
Table of contents Conditional compilation Page La...
Steps: 1. Install MySQL database 1. Download the ...
If you don't want to use javascript control, t...
Generally, after there is a menu on the left, the...
1. Introduction A few days ago, a development col...
Includes the process of initializing the root use...
Table of contents JavaScript private class fields...