HTML <area> 标签的 media 属性 详解
HTML <area> 标签的 media 属性
实例
使用 media
属性来规定目标 URL 优化的媒体/设备:
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" alt="Sun"
href="sun.html" media="screen and (min-color-index:256)">
</map>
完整实例【亲自试一试】:
<!DOCTYPE html>
<html>
<body>
<h1>area media 属性</h1>
<p>点击太阳,近距离观察它:</p>
<img src="/i/eg_planets.jpg" border="0" usemap="#planetmap" alt="Planets" />
<map name="planetmap" id="planetmap">
<area shape="rect" coords="0,0,110,260" alt="Sun" href ="/demo/example/html/sun.html" media="screen and (min-color-index:256)" />
</map>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
media
属性规定目标 URL 优化的媒体/设备。
此属性用于规定 URL 是为特殊设备(如 iPhone)、语音或印刷媒体设计的。
该属性可以接受多个值。
仅在存在 href
属性时使用。
注释:此属性纯粹是建议性的。
浏览器支持
属性 | Chrome | Internet Explorer / Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
media | Yes | Yes | Yes | Yes | Yes |
语法
<area media="value">
可能的运算符
值 | 描述 |
---|---|
and | 规定 AND 运算符。 |
not | 规定 NOT 运算符。 |
, | 规定 OR 运算符。 |
设备
值 | 描述 |
---|---|
all | 默认。适用于所有设备。 |
aural | 语音合成器。 |
braille | 盲文反馈装置。 |
handheld | 手持设备(小屏幕,有限带宽)。 |
projection | 投影仪。 |
打印预览模式/打印页面。 | |
screen | 电脑屏幕。 |
tty | 使用固定间距字符网格的电传打字机和类似媒体。 |
tv | 电视类型的设备(低分辨率,有限的滚动能力)。 |
值
值 | 描述 |
---|---|
width |
规定目标显示区域的宽度。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (min-width:500px)" |
height |
规定目标显示区域的高度。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (max-height:700px)" |
device-width |
规定目标显示器/纸张的宽度。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (device-width:500px)" |
device-height |
规定目标显示器/纸张的高度。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (device-height:500px)" |
orientation |
规定目标显示器/纸张的方向。 可能的值:"portrait" 或 "landscape" 例子:: media="all and (orientation: landscape)" |
aspect-ratio |
规定目标显示区域的宽高比。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (aspect-ratio:16/9)" |
device-aspect-ratio |
规定目标显示器/纸张的设备宽度/设备高度比率。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (aspect-ratio:16/9)" |
color |
规定目标显示器的每种颜色的位数。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (color:3)" |
color-index |
规定目标显示器可处理的颜色数。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (min-color-index:256)" |
monochrome |
规定单色帧缓冲区中每像素的位数。 可以使用 "min-" 和 "max-" 前缀。 例子:media="screen and (monochrome:2)" |
resolution |
规定目标显示器/纸张的像素密度(dpi 或 dpcm)。 可以使用 "min-" 和 "max-" 前缀。 例子:media="print and (resolution:300dpi)" |
scan |
规定电视显示器的扫描方法。 可能的值是 "progressive" 和 "interlace"。 例子:media="tv and (scan:interlace)" |
grid |
规定输出设备是网格还是位图。 网格的可能值为 "1",否则为 "0"。 例子:media="handheld and (grid:1)" |