视频播放onload然后重定向到index.html
如何在加载我的网站时播放视频(或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 autoplay=1 并启用 Youtube jsapi 来执行您想要的操作:
http: //code.google.com/apis/youtube/player_parameters.html#enablejsapi
使用 autoplay=1&enablejsapi=1
然后使用 Youtube Javascript Api 事件 onStateChange
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
http://code.google.com/apis/youtube/js_api_reference.html#Operations
The skip function is easier just add a link to your website.