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