我使用以下代码嵌入管视频,Iframe标记未在移动设备中加载视频。
<!DOCTYPE html>
<html>
<head><title></title>
</head>
<body>
<iframe width="853" height="480" src="http://www.youtube.com/v/RaQV6iQwC7Y?version=3&autohide=1&autoplay=0" frameborder="0" allowfullscreen="">
</iframe>
</body>
</html>
请建议我如何显示IOS,Android,平板电脑和桌面浏览器的YouTube视频。
答案 0 :(得分: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>