很多时候,作为开发人员,我们希望在网页中添加音频文件。以前,只能使用Flash之类的网络插件在网页上播放音频。 “audio”标签是一个嵌入式元素,用于将声音文件嵌入到网页中。如果您要在网页上添加音频,例如歌曲,采访等,这是一个非常有用的标记。要将音频嵌入AMP页面,您必须使用amp-audio标签。
设置:要使用amp-audio,必须将amp-audio组件导入到网页的开头。
HTML
<script async custom-element="amp-audio"
src="https://cdn.ampproject.org/v0/amp-audio-0.1.js">
</script>
属性:
- width:它定义了音频分割的宽度。
- height:它定义了音频分割的高度。
- src:它定义了要播放的音频文件的来源。
- preload:将preload属性设置为HTML音频标签。
- autoplay:如果存在,则在页面加载时自动启动音频。
- muted:如果存在,则默认情况下将音量强度设置为0。
- loop:如果存在,音频将在结束时自动从开始重复播放。
例:
HTML
<!doctype html>
<html amp>
<head>
<meta charset="utf-8">
<title>Google AMP amp-audio</title>
<!-- Import the mandatory script -->
<script async src=
"https://cdn.ampproject.org/v0.js">
</script>
<script async custom-element="amp-audio"
src="https://cdn.ampproject.org/v0/amp-audio-0.1.js">
</script>
<link rel="canonical" href="geeksforgeeks.html">
<!-- It is mandatory meta tag. -->
<meta name="viewport" content=
"width=device-width,minimum-scale=1,initial-scale=1">
<!-- Add the following boilerplate
tag as it is. -->
<style amp-boilerplate>
body {
-webkit-animation:-amp-start 8s
steps(1, end) 0s 1 normal both;
-moz-animation:-amp-start 8s
steps(1, end) 0s 1 normal both;
-ms-animation:-amp-start 8s
steps(1, end) 0s 1 normal both;
animation:-amp-start 8s
steps(1, end) 0s 1 normal both;
}
@-webkit-keyframes -amp-start {
from {
visibility:hidden
}
to {
visibility:visible
}
}
@-moz-keyframes -amp-start {
from {
visibility:hidden
}
to {
visibility:visible
}
}
@-ms-keyframes -amp-start {
from {
visibility:hidden
}
to {
visibility:visible
}
}
@-o-keyframes -amp-start {
from {
visibility:hidden
}
to {
visibility:visible
}
}
@keyframes -amp-start {
from {
visibility:hidden
}
to {
visibility:visible
}
}
</style>
<noscript>
<style amp-boilerplate>
body {
-webkit-animation:none;
-moz-animation:none;
-ms-animation:none;
animation:none
}
</style>
</noscript>
<!-- This is custom amp-style -->
<style amp-custom>
h1 {
color:green;
text-align:center;
}
</style>
</head>
<body>
<h1>
Geeks For Geeks
</h1>
<amp-audio width="auto" height="50"
src="GeeksForGeeks.mp3">
<div fallback>
Your browser doesn’t
support HTML5 audio
</div>
</amp-audio>
</body>
</html>
输出:
相关用法
- Google AMP amp-ad用法及代码示例
- Google AMP amp-accordion用法及代码示例
- Google AMP amp-facebook-like用法及代码示例
- Google AMP amp-carousel用法及代码示例
- Google AMP amp-date-countdown用法及代码示例
- Google AMP amp-brightcove用法及代码示例
- Google AMP amp-bind-recaptcha用法及代码示例
- Google AMP amp-autocomplete用法及代码示例
- Google AMP amp-img用法及代码示例
- Google AMP amp-image-lightbox用法及代码示例
- Google AMP amp-lightbox-gallery用法及代码示例
- Google AMP amp-soundcloud用法及代码示例
- Google AMP amp-mustache用法及代码示例
注:本文由纯净天空筛选整理自aditya_taparia大神的英文原创作品 Google AMP amp-audio。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。