Fancybox iframe群组(图库)

时间:2011-10-19 10:23:38

标签: fancybox

我想知道是否可以使用fancybox对php页面进行分组,就像分组图像一样(弹出窗口中有左右箭头)。 谢谢!

1 个答案:

答案 0 :(得分: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/