如何在点击图像后播放/启动 YouTube 视频?
我有一张图片,我想在单击该图片后才开始播放 YouTube 视频。我该怎么做?
多谢!
I have an image and I want to start a youtube video only after I click the image. How can I do this?
Thanks a lot!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
.click() JQuery 事件处理程序:
.click() JQuery event handler:
看一下:
Youtube API 示例,
代码将类似于这:
Have a look at:
Youtube API examples
the code will be something like this:
另一种方法 - 使用“?autoplay=1”版本切换 iframe SRC (URL)。
jQuery:
Another approach - switch iframe SRC (URL) with "?autoplay=1" version.
jQuery:
我想这会对你有帮助。对我来说工作得很好。
I think this will help you. Working fine for me.
添加 autoplay=1 似乎只在第一次起作用。我正在使用开始/停止按钮,当我第一次单击它时,我添加 autoplay=1。然后,当我再次单击它时,我删除了 autoplay=1。效果很好。
但是当我尝试再次启动它(添加 autoplay=1)时,它不会启动。
adding autoplay=1 only seems to work the first time. I am using a start/stop button and when i click it the first time, i add autoplay=1. Then when i click it again I remove the autoplay=1. That works fine.
but when i try to start it again (adding autoplay=1), it won't start.