Tutorial on using HTML Object elements

(*-*)浩
Release: 2019-11-14 15:16:18
Original
2649 people have browsed it

HTML Object element

Tutorial on using HTML Object elements

## 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 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>
Copy after login

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>
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template