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
Table of contents 1. exists 1.1 Description 1.2 E...
This article shares the specific code of Bootstra...
The effect achievedImplementation Code html <d...
Table of contents Achieve results Rolling load kn...
1. Introduction I have taken over a project of th...
DCL (Data Control Language): Data control languag...
This article shares the installation and configur...
Pull the image docker pull mysql View the complet...
Table of contents Preface How to encapsulate a To...
The first parameter passing method is dynamic rou...
1. Search for redis image docker search redis 2. ...
Table of contents Animation Preview Other UI Libr...
1. Requirements When using the Vue.js framework t...
Currently, most CPUs support floating-point units...
This article uses examples to illustrate the simp...