0

以下のコードを使用して、モバイル デバイスに iframe タグが読み込まれていないビデオを埋め込みます。

  <!DOCTYPE html>
  <html>
  <head><title></title>
  </head>
  <body>
    <iframe width="853" height="480" src="http://www.youtube.com/v/RaQV6iQwC7Y?version=3&amp;autohide=1&amp;autoplay=0" frameborder="0" allowfullscreen="">
    </iframe>
  </body>
  </html>

iOS、Android、タブレット、デスクトップ ブラウザで YouTube 動画を表示する方法を教えてください。

4

1 に答える 1

0

ページに Youtube ビデオを埋め込むための Youtube ガイドは次のとおりです: https://developers.google.com/youtube/player_parameters

私は通常、動画を埋め込むために YT API を使用しますが、iOS デバイスで動画を処理するには、以下のように iFrame 埋め込みコードを使用します。

<iframe width="width here" height="height here" border="0" src=' + ('https:' == document.location.protocol ? 'https' : 'http') + '://www.youtube.com/embed/' + VIDEOID here + '&autoplay=1&showinfo=0" frameborder="0" allowfullscreen></iframe>
于 2013-01-28T08:35:07.783 に答える