Fancybox ajax花时间初始化

时间:2014-04-03 11:14:04

标签: javascript jquery ajax

请帮助我提高花式盒启动的性能,我正在使用以下代码打开它,帮助在test div中返回ajax html。使用以下代码:

function showFancyboxPopup()
{   
$('.fancybox_container').fancybox(
{
        openEffect : 'fade',            
        closeEffect : 'elastic',            
        closeClick : true,          
        overlayOpacity : 0.3,
        overlayColor :'#666',
        helpers : {overlay : true} 
});  
$(".fancybox_container").trigger('click');
}

Following code to initialization of fancy box 

var test=$("#test");
$(".fancybox_container").html(test);        
showFancyboxPopup();

0 个答案:

没有答案