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

Example code for CSS pseudo-classes to modify input selection style

Note: This table is quoted from the W3School tuto...

Detailed explanation of Nginx process management and reloading principles

Process structure diagram Nginx is a multi-proces...

How to change the tomcat port number in Linux

I have several tomcats here. If I use them at the...

Detailed explanation of using pt-heartbeat to monitor MySQL replication delay

pt-heartbeat When the database is replicated betw...

Basic learning and experience sharing of MySQL transactions

A transaction is a logical group of operations. E...

Detailed explanation of MySQL remote connection permission

1. Log in to MySQL database mysql -u root -p View...

MySQL index knowledge summary

The establishment of MySQL index is very importan...

How to convert extra text into ellipsis in HTML

If you want to display extra text as ellipsis in ...

Detailed tutorial on installing nacos in docker and configuring the database

Environment Preparation Docker environment MySQL ...

JS Canvas interface and animation effects

Table of contents Overview Canvas API: Drawing Gr...

mysql5.7.18.zip Installation-free version configuration tutorial (windows)

This is the installation tutorial of mysql5.7.18....

React Native environment installation process

react-native installation process 1.npx react-nat...

How to use the Linux more command in Linux common commands

more is one of our most commonly used tools. The ...

Detailed explanation of identifying files with the same content on Linux

Preface Sometimes file copies amount to a huge wa...