El reproductor amp-o2 se utiliza para incrustar un reproductor AOL O2 en una página web AMP HTML.
Script requerido: importar el componente amp-o2-player en el encabezado.
HTML
<script async custom-element="amp-o2-player" src="https://cdn.ampproject.org/v0/amp-o2-player-0.1.js"> </script>
Atributos:
- data-pid: ID de jugador del reproductor O2.
- data-vid: ID de video del reproductor O2.
- data-bid: ID de la lista de reproducción del reproductor O2.
- data-macros: macros del reproductor O2.
Ejemplo:
HTML
<!doctype html> <html ⚡> <head> <meta charset="utf-8"> <title>Google AMP amp-o2-player</title> <script async src= "https://cdn.ampproject.org/v0.js"> </script> <!-- Import the `amp-o2-player` component --> <script async custom-element="amp-o2-player" src="https://cdn.ampproject.org/v0/amp-o2-player-0.1.js"> </script> <meta name="viewport" content= "width=device-width,minimum-scale=1,initial-scale=1"> <link rel="canonical" href= "https://amp.dev/documentation/examples/components/amp-o2-player/index.html"> <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> </head> <body> <amp-o2-player data-pid="579a115aa01b4d2db062aa85" data-bcid="545db032e4b0af1a81424b48" data-macros="m.playback=click" layout="responsive" width="480" height="270"> </amp-o2-player> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por somsagar2019 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA