2011-10-19 14 views
1

fancyboxを使用して、画像をグループ化するようなPHPページをグループ化することが可能かどうか疑問に思っています(ポップアップの左右の矢印付き)。 ありがとう!Fancybox iframeグループ(ギャラリー)

答えて

6

はい

<a rel="test" href="http://jquery.com/">Iframe (75% width and height)</a><br/> 
<a rel="test" href="http://jqueryui.com">google</a> 




<script type="text/javascript"> 
$(document).ready(function(){ 
     $("a[rel=test]").fancybox({ 
       'transitionIn'  : 'none', 
       'transitionOut'  : 'none', 
       'width'    : '75%', 
       'height'   : '75%', 
       'autoScale'   : false, 
       'type'    : 'iframe' 
      }); 
}); 
    </script> 

私はこのテストページを共有するためのhttp://jsfiddle.net/Flatlineato/Kne3n/1/

+0

感謝を作成しました。 –

関連する問題