1. Basic grammar Copy code The code is as follows:embed src=url Note: embed can be used to insert various multimedia, the formats can be Midi, Wav, AIFF, AU, MP3, etc., Netscape and the new version of IE support it. url is the audio or video file and its path, which can be a relative path or an absolute path. Example: Copy code The code is as follows: <embed src="your.mid"> 2. Attribute settings 1. Automatic playback: Syntax: autostart=true, false Copy code The code is as follows:<embed src="your.mid" autostart=true> <embed src="your.mid" autostart=false> 2. Loop playback: Syntax: loop=positive integer, true, false Example: Copy code The code is as follows: <embed src="your.mid" autostart=true loop=2> <embed src="your.mid" autostart=true loop=true> <embed src="your.mid" autostart=true loop=false> 3. Panel display: Example: Copy code The code is as follows: <embed src="your.mid" hidden=true> <embed src="your.mid" hidden=no> 4. Start time: Copy code The code is as follows: <embed src="your.mid" starttime="00:10"> 5. Volume: Copy code The code is as follows: <embed src="your.mid" volume="10"> 6. Container properties: Syntax: height=# width=# Note: The value is a positive integer or percentage, in pixels. This property specifies the height and width of the control panel. height: the height of the control panel; width: The width of the control panel. Example: Copy code The code is as follows: <embed src="your.mid" height=200 width=200> 7. Container unit: Copy code The code is as follows: <embed src="your.mid" units="pixels" height=200 width=200> <embed src="your.mid" units="en" height=200 width=200> 8. Appearance settings: Syntax: controls=console, smallconsole, playbutton, pausebutton, stopbutton, volumelever Description: This property specifies the appearance of the control panel. The default value is console. console: general normal panel; smallconsole: a smaller panel; playbutton: only display the play button; pausebutton: only display the pause button; stopbutton: only display the stop button; volumelever: Only the volume adjustment button is displayed. Example: Copy code The code is as follows: <embed src="your.mid" controls=smallconsole> <embed src="your.mid" controls=volumelvever> 9. Object name: Syntax: name=# Note: # is the name of the object. This property gives the object a name so that other objects can use it. Example: Copy code The code is as follows: <embed src="your.mid" name="video"> 10. Description: Copy code The code is as follows: <embed src="your.mid" title="First Song"> 11. Foreground and background colors: Copy code The code is as follows: <embed src="your.mid" palette="red|black"> 12. Alignment: Syntax: align=top, bottom, center, baseline, left, right, texttop, middle, absmiddle, absbottom Description: This property specifies the alignment of the control panel and objects in the current row. center: The control panel is centered; left: the control panel is on the left; right: the control panel is on the right; top: The top of the control panel is aligned with the top of the tallest object in the current row; bottom: The bottom of the control panel is aligned with the baseline of the objects in the current row; baseline: The bottom of the control panel is aligned with the baseline of the text; texttop: The top of the control panel is aligned with the top of the tallest text in the current line; middle: The middle of the control panel is aligned with the baseline of the current row; absmiddle: The middle of the control panel is aligned with the middle of the current text or object; absbottom: The bottom of the control panel is aligned with the bottom of the text. Example: Copy code The code is as follows: <embed src="your.mid" align=top> <embed src="your.mid" align=center> |
<<: How to use CSS3 to implement a queue animation similar to online live broadcast
>>: The role and methods of information communication in website visual design (picture and text)
1. Backup source list The default source of Ubunt...
Table of contents Preface 1. The significance of ...
Table of contents 【Code background】 【Code Impleme...
I was woken up by a phone call early in the morni...
1. Introduction When the amount of data in the da...
Find the problem Recently, when I was filling in ...
Table of contents Installation Steps Environment ...
This rookie encountered such a problem when he ju...
Preface For a long time, the application and lear...
Table of contents Prune regularly Mirror Eviction...
Open the centos yum folder Enter the command cd /...
In Linux, we usually use the mv command to rename...
I have read an article written by the Yahoo team ...
1. Composite primary key The so-called composite ...
Experimental environment: 1. Three CentOS 7 serve...