Home > Article > Web Front-end > Tutorial on using HTML Object elements
HTML Object element
##273238ce9338fbb04bee6997e5552b95 is used to support HTML helpers (plug-ins).
HTML Assistant (plug-in) (Recommended learning: html tutorial)
The auxiliary application (helper application) can be used by the browser Started program. Helper applications are also called plug-ins. Helper programs can be used to play audio and video (among others). Helpers are loaded using the 273238ce9338fbb04bee6997e5552b95 tag. One advantage of using a helper program to play video and audio is that you can allow the user to control some or all of the playback settings. Most accessibility applications allow manual (or programmatic) control of volume settings and playback functions such as rewind, pause, stop, and play.Use QuickTime to play Wave audio
Example
<object width="420" height="360" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab"> <param name="src" value="bird.wav" /> <param name="controller" value="true" /> </object>
Use Flash to play SWF video
Example
<object width="400" height="40" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/ pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"> <param name="SRC" value="bookmark.swf"> <embed src="bookmark.swf" width="400" height="40"></embed> </object>
The above is the detailed content of Tutorial on using HTML Object elements. For more information, please follow other related articles on the PHP Chinese website!