欢迎访问服务器技术网-www.fuwuqijishu.com

HTML <source> 标签

HTML fuwuqijishu 2年前 (2022-09-04) 249次浏览 0个评论 扫描二维码
文章目录[隐藏]

HTML <source> 标签

实例

带有两个源文件的音频播放器。浏览器需要选择它所支持的源文件(如果都支持则任选一个):

<audio controls>
<source src="horse.ogg" type="audio/ogg">
<source src="horse.mp3" type="audio/mpeg">
您的浏览器不支持 audio 元素。
</audio>


浏览器支持

表格中的数字表示支持该标签的第一个浏览器版本号。

标签
<source> 4.0 9.0 3.5 4.0 10.5

标签定义及使用说明

<source> 标签为媒体元素(比如 <video> 和 <audio>)定义媒体资源。

<source> 标签允许您规定两个视频/音频文件供浏览器根据它对媒体类型或者编解码器的支持进行选择。


HTML 4.01 与 HTML5之间的差异

<source> 标签是 HTML5 中的新标签。


属性

New :HTML5 中的新属性。

属性 描述
mediaNew media_query 规定媒体资源的类型,供浏览器决定是否下载。
srcNew URL 规定媒体文件的 URL。
type MIME_type 规定媒体资源的 MIME 类型。
sizes   不同页面布局设置不同图片大小。
srcset URL <source> 应用于 <picture> 标签时需要使用到。指定在不同情况下使用的图像 URL。

更多实例

实例

在 <video> 标签中使用 <source> 来设置视频:

<video width="320" height="240" controls>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>

实例

在 <picture> 标签中使用 <source> 来设置不同屏幕显示的图片:

<picture>
<source media="(min-width:650px)" srcset="https://static.runoob.com/images/runoob-logo.png">
<source media="(min-width:465px)" srcset="https://static.runoob.com/images/code-icon-script.png">
<img src="https://static.runoob.com/images/mix/hjkg_icon.png" style="width:auto;">
</picture>

喜欢 (0)

发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2318.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900