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

Vue implements adding watermark effect to the page

Recently, when I was working on a project, I was ...

Introduction and usage examples of ref and $refs in Vue

Preface In JavaScript, you need to use document.q...

Semanticization of HTML tags (including H5)

introduce HTML provides the contextual structure ...

Use shell script to install python3.8 environment in CentOS7 (recommended)

One-click execution To install Python 3.8 in a vi...

Let's talk about MySQL joint query in detail

Table of contents Union query 1. Query the ID and...

HTML code example: detailed explanation of hyperlinks

Hyperlinks are the most frequently used HTML elem...

Solution to MySql Error 1698 (28000)

1. Problem description: MysqlERROR1698 (28000) so...

Detailed explanation of nginx anti-hotlink and anti-crawler configuration

Create a new configuration file (for example, go ...

Why is it not recommended to use index as the key attribute value in Vue?

Table of contents Preface The role of key The rol...

Implementation of CSS3 button border animation

First look at the effect: html <a href="#...

WeChat applet realizes linkage menu

Recently, in order to realize the course design, ...

Five ways to traverse JavaScript arrays

Table of contents 1. for loop: basic and simple 2...