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 回答