嵌入 YouTube 视频 - 他们是如何做到的?
在撰写本文时,Movember 即将来临。
我以前从未见过如此完美地嵌入网站的 YouTube 视频 - 没有 YouTube 皮肤。有谁知道它是怎么做到的?
at the time of writing Movember is fast approaching.
I've never seen a YouTube video embedded in a site so well before - there is no YouTube skin. Does anyone know how it was done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
http://code.google.com/apis/youtube/player_parameters.html
http://code.google.com/apis/youtube/player_parameters.html
该元素的 HTML 是这样的:
这可能是您的关键
http://www.youtube.com/apiplayer?enablejsapi=1
,因为它似乎启用了某种 API(这是一个未换肤的播放器:http://www.youtube.com/apiplayer?enablejsapi=1)。我会查看该网站的源代码,看看他们使用什么 JS 来控制视频。
我查看了 JS,有一些这样的函数可以使用:
layout_tilePlay();
layout_titleMute();
The HTML of that element is this:
This might be your key
http://www.youtube.com/apiplayer?enablejsapi=1
, as it seems to enable some sort of API (here's an unskinned player: http://www.youtube.com/apiplayer?enablejsapi=1).I'd look at that site's source and see what JS they are using to control the video.
I looked at the JS, and there are a few functions like this you can play with:
layout_tilePlay();
layout_titleMute();