Flash embedded in web pages and IE, FF, Maxthon compatibility issues

Flash embedded in web pages and IE, FF, Maxthon compatibility issues
After going through a lot of hardships, I searched the Internet, looked for projects from previous companies, and looked for other people's projects to view source files. . . 】
At this moment, the unclear problem has finally been solved and a mark has been made! ! ! !
The entire embedding only requires the following code

Copy code
The code is as follows:

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" width="100%" height="100%" align="top">
<param name="movie" value="main.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<param name="allowFullScreen" value="true" />
<embed src="main.swf" width="100%" height="100%" align="top" wmode="window" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" allowfullscreen="true"></embed>
</object>

<param name="wmode" value="transparent">This sentence is used to solve the Maxthon compatibility issue
<embed wmode="window" is used to solve FF compatibility issues. This method is only suitable when htmlJS does not need to be called.
OKOKOKOKOKOKOK.....

<<:  MySQL Billions of Data Import, Export and Migration Notes

>>:  Detailed introduction and usage examples of map tag parameters

Recommend

Implementation of MySQL scheduled backup script under Windows

On a Windows server, if you want to back up datab...

How to set npm to load packages from multiple package sources at the same time

Table of contents 1. Build local storage 2. Creat...

Nginx rtmp module compilation arm version problem

Table of contents 1. Preparation: 2. Source code ...

How to deploy Vue project using Docker image + nginx

1. Packaging Vue project Enter the following name...

Use of provide and inject in Vue3

1. Explanation of provide and inject Provide and ...

Angular Cookie read and write operation code

Angular Cookie read and write operations, the cod...

Cross-origin image resource permissions (CORS enabled image)

The HTML specification document introduces the cr...

In-depth understanding of MySQL long transactions

Preface: This article mainly introduces the conte...

Some CSS questions you may be asked during an interview

This article is just to commemorate those CSS que...

How to create a stylish web page design (graphic tutorial)

"Grand" are probably the two words that ...

Implementation of automatic completion of Docker commands

Preface I don't know how long this friend has...