nsIDOMHTMLSourceElement 编辑
The nsIDOMHTMLSourceElement
interface is the DOM interface to the source
child of the audio
and video
media elements in HTML.
dom/interfaces/html/nsIDOMHTMLSourceElement.idl
Scriptable Please add a summary to this article. Last changed in Gecko 1.9.1.2Inherits from: nsIDOMHTMLElement
The source
element allows authors to specify multiple media resources for media elements. It does not specify anything on its own.
Attributes
Attribute | Type | Description |
src | DOMString | The src attribute gives the address of the media resource. The value must be a valid URL. This attribute must be present. Note that dynamically manipulating this value after the page has loaded has no effect on the containing element; instead, change the src attribute of that element (audio or video ) instead. |
type | DOMString | The |
media Unimplemented | DOMString | The media attribute gives the intended media type of the media resource, to help the user agent determine if this media resource is useful to the user before fetching it. Its value must be a valid media query. |
Example
<video controls>
<source src="foo.webm" type="video/webm; codecs="vp9, opus"">
Your browser does not support the <code>video</code> element.
</video>
This example specifies that a video object with playback controls should be drawn, playing the file "foo.ogg". The type is specified as "video/ogg", and the source
element also specifies that the video file uses the Dirac and Speex codecs.
See also
- Media elements (HTML 5 specification, editor's draft)
video
audio
- Using audio and video in Firefox
- Media formats supported by the audio and video elements
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论