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

发布于 2024-11-09 06:11:10 字数 209 浏览 0 评论 0原文

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

(如果视频必须嵌入到 index.html 中,以便网站的其余部分位于其他位置,那也可以)。

请注意,我正在使用 WordPress。

提前致谢。

How can I have a video (or youtube video) play on loading my website with the option to "skip". If the skip video is clicked then that will redirect to the index.html however how can I set it up so that when the Video finishes playing it automatically loads the index.html in the website.

(If the video has to be embedded in the index.html so that the rest of the website is elsewhere that's fine too).

Just a heads up I am using WordPress.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凝望流年 2024-11-16 06:11:10

您可以使用 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

跳过功能更容易,只需添加指向您网站的链接即可。

You can use autoplay=1 and enable the Youtube jsapi to do what you want:

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

Use autoplay=1&enablejsapi=1

Then use Youtube Javascript Api event 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

The skip function is easier just add a link to your website.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文