视频播放onload,然后重定向到index.html

时间:2011-05-20 15:48:35

标签: html flash video youtube

如何在加载我的网站时播放视频(或youtube视频)并选择“跳过”。如果单击跳过视频,那么将重定向到index.html但是如何设置它以便在视频完成播放时自动加载网站中的index.html。

(如果视频必须嵌入index.html中,那么网站的其余部分也在其他地方也很好)。

我正在使用WordPress。

提前致谢。

1 个答案:

答案 0 :(得分:1)

您可以使用autoplay = 1并启用Youtube jsapi来执行您想要的操作:

http://code.google.com/apis/youtube/player_parameters.html#enablejsapi

使用autoplay = 1& enablejsapi = 1

然后使用Youtube Javascript Api事件onStateChange

This event is fired whenever the player's state changes. Possible values are unstarted
(-1), ended (0), playing (1), paused (2), buffering (3), video cued (5). When the SWF 
is first loaded it will broadcast an unstarted (-1) event. When the video is cued and 
ready to play it will broadcast a video cued event (5).

http://code.google.com/apis/youtube/js_api_reference.html#Operations

只需添加链接到您的网站,跳过功能就更容易了。