How to add links to FLASH in HTML and make it compatible with all major browsers

How to add links to FLASH in HTML and make it compatible with all major browsers
Look at the code first

Copy code
The code is as follows:

<div style="position:relative; width:[flash width]px; height:[flash height]px;">
<a href="Fill in the link address" target="_blank"
style="position:absolute; width:[flash width]px; height:[flash height]px; left:0; top:0; z-index:100">
</a>
<button style="width:[flash width]px;height:[flash height]px; position:relative; z-index:1; background:transparent;border:none;padding:0;cursor:pointer;"
onclick="window.open('Fill in the link address')">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/
swflash.cab#version=7,0,0,0"
width="[flash width]" height="[flash height]" id="Untitled-1" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="Fill in the flash ad address" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<param name="bgcolor" value="#ffffff" />
<embed src="Fill in the flash ad address" quality="high" bgcolor="#ffffff" width="[flash width]"
height="[flash's height]" name="mymovie" align="middle" allowScriptAccess="sameDomain"
type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</button>

The a tag is used to solve the problem of FF, Chrome, Opera and other browsers not jumping when clicking, and the button is used to solve the problem of IE browser

<<:  Rhit efficient visualization Nginx log viewing tool

>>:  Practice of using SuperMap in Vue

Recommend

CSS isolation issue in Blazor

1. Environment VS 2019 16.9.0 Preview 1.0 .NET SD...

Nodejs global variables and global objects knowledge points and usage details

1. Global Object All modules can be called 1) glo...

61 Things Every Web Developer Should Know

Normally, you'll need to read everyone's s...

How to implement the singleton pattern in Javascript

Table of contents Overview Code Implementation Si...

MySQL slow query pitfalls

Table of contents 1. Slow query configuration 1-1...

Sample code for implementing interface signature with Vue+Springboot

1. Implementation ideas The purpose of interface ...

Vue implements seamless scrolling of lists

This article example shares the specific code of ...

Detailed explanation of the minimum width value of inline-block in CSS

Preface Recently, I have been taking some time in...

Detailed explanation of pure SQL statement method based on JPQL

JPQL stands for Java Persistence Query Language. ...

Detailed explanation of Docker working mode and principle

As shown in the following figure: When we use vir...

Implementation of nginx worker process loop

After the worker process is started, it will firs...

How to use skeleton screen in vue project

Nowadays, application development is basically se...

Detailed explanation of Vue router routing guard

Table of contents 1. Global beforeEach 1. Global ...

Why do we need Map when we already have Object in JavaScript?

Table of contents 1. Don’t treat objects as Maps ...