Recently, I encountered the need to embed a player in a web page to play sound files at work. Finally, I used the embed element code as follows: Copy code The code is as follows:<embed src='1093.swf' autostart='false' hidden='true' loop='false' ></embed> To prevent it from making a sound when the page is first loaded, set the autostart attribute to false. If you want to play the sound, call the play method of the embed element to play the sound. It worked at first, but after a while, I found that the autostart attribute of the embed element was invalid. Even if it was set to false, it would still play automatically once when the page was loaded. I searched for a long time and finally found the answer through Google. Adding the following code can solve the problem Copy code The code is as follows:<embed id="emswf" src="1093.swf" play="false" flashvars="autoplay=false&play=false" menu="false" hidden="true" loop="false"></embed> |
<<: Website Standard Development Flowchart
>>: Detailed explanation of the 4 codes that turn the website black, white and gray
Table of contents Preface Relationships between v...
Table of contents Parent component communicates w...
The default database of CentOS7 is mariadb, but m...
This article example shares the specific code of ...
The EXPLAIN statement provides information about ...
Quoting Baidu's explanation of pseudo-static:...
What are the lifecycle functions of React compone...
MySQL Create Database After logging into the MySQ...
Preface: js is a single-threaded language, so it ...
Here, clever use of CSS techniques allows you to g...
If you want to become a Linux master, then master...
This article shares the installation tutorial of ...
First, before posting! Thanks again to I Want to S...
This article shares the specific code for impleme...
MySQL has non-standard data types such as float a...