-1

我有一个没有移动版本的简单网站。

我知道如何通过用户代理(通过http://detectmobilebrowsers.com/)定位 iPad 和 iPhone,但我想要的是当用户进入时,而不是看到网站,他应该看到来自 YouTube 的视频。最好是全屏和自动播放。

这样做的“正常”方式是什么?

4

1 回答 1

1

您需要转到要添加的视频,以获取您喜欢的尺寸的嵌入式代码,如下所示:

<iframe width="560" height="315" src="http://www.youtube.com/embed/WOoUVeyaY_8" frameborder="0" allowfullscreen></iframe>

然后在“src”的末尾添加:

?autoplay=1

它应该看起来像这样:

<iframe width="560" height="315" src="http://www.youtube.com/embed/WOoUVeyaY_8?autoplay=1" frameborder="0" allowfullscreen></iframe>
于 2013-07-29T14:33:52.167 回答