📜  谷歌 AMP amp-soundcloud(1)

📅  最后修改于: 2023-12-03 14:57:45.665000             🧑  作者: Mango

谷歌 AMP与amp-soundcloud

简介

谷歌 AMP(Accelerated Mobile Pages)是谷歌推出的一种移动优化技术,旨在提高网页在移动设备上的速度和性能。其中,amp-soundcloud是针对谷歌 AMP 的 Soundcloud 插件,可以在 AMP 页面上嵌入 Soundcloud 音频。

如何使用
安装amp-soundcloud

在 AMP 页面中使用 amp-soundcloud 插件,需要在页面中引入相关的 javascript 和 css 文件,可以通过以下方式进行引入:

<head>
  <script async custom-element="amp-soundcloud" src="https://cdn.ampproject.org/v0/amp-soundcloud-0.1.js"></script>
  <link rel="stylesheet" type="text/css" href="https://cdn.ampproject.org/v0/amp-soundcloud-0.1.css">
</head>
插入音频

在页面中插入音频,可以使用以下代码:

<amp-soundcloud data-trackid="346188439" data-color="ff5500" layout="fixed-height" height="166"></amp-soundcloud>

其中 data-trackid 属性为 Soundcloud 音频的 ID,data-color 属性为播放器主题色,layout 属性为播放器的布局方式,目前只支持 fixed-heightheight 属性为播放器的高度。

示例

以下是一个简单的谷歌 AMP 页面示例,该页面引入了 amp-soundcloud 插件,在页面上嵌入了一段 Soundcloud 音频:

<!doctype html>
<html ⚡>
<head>
  <meta charset="utf-8">
  <title>Hello, AMP!</title>
  <link rel="canonical" href="https://amp.dev/documentation/examples/components/amp-soundcloud/">
  <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
  <script async src="https://cdn.ampproject.org/v0.js"></script>
  <script async custom-element="amp-soundcloud" src="https://cdn.ampproject.org/v0/amp-soundcloud-0.1.js"></script>
  <link rel="stylesheet" type="text/css" href="https://cdn.ampproject.org/v0/amp-soundcloud-0.1.css">
</head>
<body>
  <h1>Welcome to the AMP HTML playground</h1>
  <p>This page is a simple demo of the amp-soundcloud component.</p>
  
  <amp-soundcloud data-trackid="346188439" data-color="ff5500" layout="fixed-height" height="166"></amp-soundcloud>
</body>
</html>
总结

谷歌 AMP 技术可以帮助提高移动网页的加载速度和性能,在移动端使用时尤为重要。amp-soundcloud 插件则为 AMP 页面嵌入 Soundcloud 音频提供了便利,使得在 AMP 页面上嵌入 Soundcloud 音频变得非常容易。