javascript / fancybox - 将 mp4 加载到 fancybox 中
我正在尝试将 h264 mp4 加载到 fancybox lightbox 中 - 有没有办法做到这一点?如果没有 - 我该如何通过将视频上传到 youtube 或 vimeo 来做到这一点?我看到它在路线图上,不确定暂时是否可以即兴发挥。
<块引用> <块引用>编辑 - 这是我基于下面建议答案的代码,它不捕获链接的 href。我需要知道如何捕获 href。
$(".galleryVideo").fancybox({
'padding' : 0, // optional
'title' : this.title,
'content': '<embed src="{site_url}js/jw/jwplayer.swf?file='+this.href+'&autostart=true&fs=1" type="application/x-shockwave-flash" width="444" height="250" wmode="opaque" allowfullscreen="true" allowscriptaccess="always"></embed>'
});
I'm trying to load an h264 mp4 into fancybox lightbox - is there a way to do this? If not - how would I do this by uploading video to youtube or vimeo? I see it's on the roadmap, not sure if there's a way I could improvise for the time being.
EDIT - This is my code based on the suggested answer below, which does not capture the href of the link. I need to know how to capture the href.
$(".galleryVideo").fancybox({
'padding' : 0, // optional
'title' : this.title,
'content': '<embed src="{site_url}js/jw/jwplayer.swf?file='+this.href+'&autostart=true&fs=1" type="application/x-shockwave-flash" width="444" height="250" wmode="opaque" allowfullscreen="true" allowscriptaccess="always"></embed>'
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
无论如何,您需要一个 swf 播放器。例如,您可以使用jwplayer,如果您这样做,检查此线程以获取想法如何与 fancybox 一起使用它。
You need a swf player in any case. You may use jwplayer for instance and if you do so, check this thread to get an idea how to use it with fancybox.