我有一个没有移动版本的简单网站。
我知道如何通过用户代理(通过http://detectmobilebrowsers.com/)定位iPad和iPhone,但我想要的是,当用户进入而不是看到网站时,他应该会看到来自YouTube的视频。最好是全屏和自动播放。
这样做的“正常”方式是什么?
答案 0 :(得分: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>