Skip to content

Latest commit

 

History

History
85 lines (63 loc) · 2.84 KB

amp-soundcloud.md

File metadata and controls

85 lines (63 loc) · 2.84 KB

amp-soundcloud

Description Displays a Soundcloud clip.
Availability Stable
Required Script <script async custom-element="amp-soundcloud" src="https://cdn.ampproject.org/v0/amp-soundcloud-0.1.js"></script>
Supported Layouts fixed-height
Examples Annotated code example for amp-soundcloud

Examples

Visual Mode:

<amp-soundcloud height=657
    layout="fixed-height"
    data-trackid="243169232"
    data-visual="true"></amp-soundcloud>

Classic Mode:

<amp-soundcloud height=657
    layout="fixed-height"
    data-trackid="243169232"
    data-color="ff5500"></amp-soundcloud>

Attributes

data-trackid (required)

The ID of the track, an integer.

data-secret-token (optional)

The secret token of the track, if it is private.

data-visual (optional)

If set to true, displays full-width "Visual" mode; otherwise, it displays as "Classic" mode. The default value is false.

data-color (optional)

This attribute is a custom color override for the "Classic" mode. The attribute is ignored in "Visual" mode. Specify a hexadecimal color value, without the leading # (e.g., data-color="e540ff").

width and height

The layout for amp-soundcloud is set to fixed-height and it fills all of the available horizontal space. This is ideal for the "Classic" mode, but for "Visual" mode, it's recommended that the height is 300px, 450px or 600px, as per Soundcloud embed code. This will allow the clip's internal elements to resize properly on mobile.

Validation

See amp-soundcloud rules in the AMP validator specification.