The ultimate solution for playing background music in Firefox browser (Chrome multi-browser compatible)

The ultimate solution for playing background music in Firefox browser (Chrome multi-browser compatible)
The recommended code for playing background music in Firefox has passed the test

Open a blank control panel and paste the following code, search the song you want on the Internet, copy the address and save it
<embed src=music link address width=200 height=50 type=audio/mpeg loop="true" autostart="true">
Width and height are the width and height of the player, which can be set flexibly.
autostart="true" means automatic playback, autostart="false" means no automatic playback.
loop="true" means continuous loop playback, loop="false" means no loop playback.
loop can be equal to an integer, for example loop="3" means the music will be played 3 times

If firefox cannot play, it will prompt you to install quicktime. After testing (IE6+ firefox chrome test passed)


The necessary plug-in installation allows Firefox to listen to background music.

The tags for background music in HTML syntax are <bgsound> and <embed>. No matter which one you use, Firefox cannot hear it. The solution is:
1. Install iTunes+Quick
Download: http://www.apple.com/quicktime/download/
Or: Download iTunes from http://www.apple.com/itunes/
During installation: just keep pressing "Next", especially when establishing the "associative connection" of multimedia files, do not uncheck it, and let it establish a connection with QuickTime.

2. Install the bgsound to embed extension for Firefox.
Download: https://addons.update.mozilla.org/extensions/moreinfo.php?id=146&vid=237

3. Check whether it is installed correctly. Restart Firefox and enter "about:plugins" in the address bar to see if there is a QuickTime Plugin.


The following are supplementary methods: The first method is recommended:

<embed src="py.mp3" height="45" width="250">

Where src is followed by the name of the music file to be inserted, and height and width are the height and width of the play frame.

If you want to play music automatically after the web page is opened, you can use the following code:

<DIV align=center><embed src="py.mp3" height="45" width="250" autostart="true" ></DIV>

If you want the play box to be displayed in the center, you can use the following code:

<DIV align=center><embed src="py.mp3" height="45" width="250"></DIV>

To enable your web page to play background music in Firefox browser, use the object tag.
The following is a standard, cross-browser code example: (the search came from the Mozilla community)

Copy code
The code is as follows:

<object data="music.mp3" type="application/x-mplayer2" width="0" height="0">
<param name="src" value="music.mp3">
<param name="autostart" value="1">
<param name="playcount" value="infinite">
</object>

<<:  Summary of changes in the use of axios in vue3 study notes

>>:  MySql sharing of null function usage

Recommend

Introduction to the usage of exists and except in SQL Server

Table of contents 1. exists 1.1 Description 1.2 E...

Bootstrap realizes the effect of carousel

This article shares the specific code of Bootstra...

3D tunnel effect implemented by CSS3

The effect achievedImplementation Code html <d...

Vue implements scroll loading table

Table of contents Achieve results Rolling load kn...

How to add Vite support to old Vue projects

1. Introduction I have taken over a project of th...

How to use DCL to manage users and control permissions in MySQL

DCL (Data Control Language): Data control languag...

Tutorial on installing MySQL with Docker and implementing remote connection

Pull the image docker pull mysql View the complet...

Simple steps to encapsulate components in Vue projects

Table of contents Preface How to encapsulate a To...

A brief discussion on several ways to pass parameters in react routing

The first parameter passing method is dynamic rou...

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

Using vue3 to imitate the side message prompt effect of Apple system

Table of contents Animation Preview Other UI Libr...

How to encapsulate axios in Vue project (unified management of http requests)

1. Requirements When using the Vue.js framework t...

A brief discussion on the Linux kernel's support for floating-point operations

Currently, most CPUs support floating-point units...

MySQL trigger simple usage example

This article uses examples to illustrate the simp...