1

I am using fancybox_v2.1 & incorporated like

$(document).ready(function() {
            $("a.fancylink").fancybox({
                autoDimensions: false,
                autoScale: true,
                width: '90%',
                height: 600,
                maxWidth    : 800,
                maxHeight   : 600,
                type: 'iframe',
                modal: false,
                marginTop: 20,
                closeBtn : true,
                fitToView   : false,
                autoSize    : false,
                openEffect  : 'none',
                closeEffect : 'none',
                centerOnScroll: true
            });
        }); 

I am facing weird issue, text is not visible properly in between lines after given height, it looks like there is some white box above text in ios5 but in ios6 it works fine.

4

1 回答 1

0

我用type: 'ajax'代替type: 'iframe'现在它支持 ios6 和 ios5

http://fancyapps.com/fancybox/

于 2012-10-16T10:18:08.510 回答