Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. HTMLSourceElement
  4. media

HTMLSourceElement: media property

Themedia property of theHTMLSourceElement interface is a string representing the intended destination medium for the resource. The value is amedia query, which is a comma separated list of media-types, media-features, and logical operators.

It reflects themedia attribute of the<source> element.

Value

A string.

Examples

html
<video>  <source       src="largeVideo.mov"    type="video/quicktime"    media="screen and (width >= 600px)" /></video>
js
const el = document.getElementById("el");console.log(el.media); // Output: "screen and (width >= 600px)"el.media = "(width >= 800px)"; // Updates the media value

Specifications

Specification
HTML
# dom-source-media

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp