小码哥的IT人生

HTML <source> media 属性 详解

HTML基础 2022-06-02 12:07:37小码哥的IT人生shichen

HTML <source> media 属性

实例

使用 media 属性:

<source src="movie.ogg" type="video/ogg" media="screen and (min-width:320px)"> 

 

完整实例【亲自试一试】:

<!DOCTYPE html>
<html>
<body>
<video width="320" height="240" controls>
<source src="/i/movie.mp4" type="video/mp4" media="screen and (min-width:320px)">
<source src="/i/movie.ogg" type="video/ogg" media="screen and (min-width:320px)">
Your browser does not support the video tag.
</video>
<p><b>注释:</b>目前几乎没有浏览器支持 media 属性。</p>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

浏览器支持

IE Firefox Chrome Safari Opera
         

任何浏览器都不支持 <source> 标签的 media 属性。

定义和用法

media 属性规定媒体资源的类型(文件是为何种媒体/设备进行了优化)。

浏览器可使用该属性来判断它是否能播放这个文件。如果不能播放,则可以选择不进行下载。

注释:该属性可接受多个值。

HTML 4.01 与 HTML 5 之间的差异

<source> 标签是 HTML 5 中的新标签。

语法

<source media="value">

可能的运算符

描述
and 规定 AND 运算符。
not 规定 NOT 运算符。
, 规定 OR 运算符。

设备

描述
all 默认。适用于所有设备。
aural 语音合成器。
braille 盲文点字反馈设备。
handheld 手持设备(小型屏幕、有限带宽)
projection 投影仪
print 打印预览模式/打印页面
screen 计算机屏幕
tty 电传打字机以及类似的使用等宽字符网格的媒体。
tv 电视机类型设备(低分辨率、有限的滚屏能力)。

描述
width

规定目标显示区域的宽度。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (min-width:500px)"

height

规定目标显示区域的高度。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (max-height:600px)"

device-width

规定目标显示器/纸张的宽度。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (device-width:500px)"

device-height

规定目标显示器/纸张的高度。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (device-height:600px)"

orientation

规定目标显示器/纸张的方向。

可能的值:"portrait" 或 "landscape"。

例子:media="all and (orientation: landscape)"

aspect-ratio

规定目标显示区域的宽度/高度比。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (aspect-ratio:16/10)"

device-aspect-ratio

规定目标显示器/纸张的 device-width/device-height 比率。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (aspect-ratio:16/10)"

color

规定目标显示器的 bits/color(每色位)。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (color:10)"

color-index

规定目标显示器可以处理的颜色数。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (min-color-index:16777216)"

monochrome

规定单色帧缓冲中的 bits/pixel(位/像素)。

可使用 "min-" 和 "max-" 前缀。

例子:media="screen and (monochrome:2)"

resolution

规定目标显示器/纸张的像素密度 (dpi 或 dpcm)。

可使用 "min-" 和 "max-" 前缀。

例子:media="print and (resolution:326dpi)"

scan

规定电视显示器的扫描方式。

可能的值:"progressive" 和 "interlace"。

例子:media="tv and (scan:interlace)"

grid

规定输出设备是网格还是位图。

可能的值:"1" 为网格,否则为 "0"。

例子:media="handheld and (grid:0)"

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024