2012-02-16 98 views
0

我想使用fancybox在iframe中顯示Vimeo視頻。Fancybox iframe,顯示iframe,然後去url?

這是我的代碼:

$(document).ready(function() { 
    $(".fancyvarious").fancybox({ 
     maxWidth : 800, 
     maxHeight : 600, 
     fitToView : false, 
     width  : '70%', 
     height  : '70%', 
     autoSize : false, 
     closeClick : false, 
     openEffect : 'none', 
     closeEffect : 'none' 
    }); 
}); 

鏈接:

<a class="fancyvarious fancybox.iframe" href="http://vimeo.com/videoID"><img src="linkurl.jpg" alt="" width="950" height="400" /></a> 

當我點擊圖片,它顯示的iframe,但隨後它進入網址...我只想要顯示iframe。

有人可以幫助我嗎?

謝謝!

回答

0

http://fancyapps.com/fancybox/demo/

<a href="iframe.html" class="fancybox fancybox.iframe">Iframe</a> 

<!--iframe.html--> 
<iframe src="http://player.vimeo.com/video/33698394?title=0&amp;byline=0&amp;portrait=0" width="400" height="225" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe><p><a href="http://vimeo.com/33698394">The Love Competition</a> from <a href="http://vimeo.com/user6989541">Brent Hoff</a> on <a href="http://vimeo.com">Vimeo</a>.</p> 
+0

確定,將溶液用http://player.vimeo.com/video/videoID謝謝 – Klian 2012-02-16 10:33:12

0

試試這個:

$(".fancyvarious").click(function(e) { 
    e.preventDefault(); 
}); 
// fancybox initialisation here... 
+0

感謝您的答覆,但它不工作:( – Klian 2012-02-16 10:28:34