2017-04-05 60 views
0

我有一個加載在jQuery colorbox中的屏幕,它工作正常,但問題是它加載的方式看起來不順利。下面的代碼有問題嗎?或者有什麼設置我找不到?jQuery colorbox非常突然加載

$.fn.colorbox({ 
    iframe : true, 
    width : '90%', 
    height : '90%', 
    scrolling : false, 
    className: 'team-regedit-popup', 
    href : url + "?" + params+"&projectId=" + projectId, 
    overlayClose : false, 
    onClosed : function() { 
     $(parent.document.getElementById('cboxClose')).show(); 
     var sortId = $('.sortButton.sort_sel').data('sortid'); 
     var searchText = $('#searchText').val(); 
     projectRegistration.displayTeamTable(sortId, searchText); 
     F.unlock_scroll(self); 
    } 
}); 

我試過fastIframe: false但沒有幫助。

回答

1

docstransition標誌嘗試,它有三個值,默認爲elastic,嘗試用nonefade

$.fn.colorbox({ 
    iframe : true, 
    width : '90%', 
    height : '90%', 
    scrolling : false, 
    transition : none, 
    className: 'team-regedit-popup', 
    href : url + "?" + params+"&projectId=" + projectId, 
    overlayClose : false, 
    onClosed : function() { 
     $(parent.document.getElementById('cboxClose')).show(); 
     var sortId = $('.sortButton.sort_sel').data('sortid'); 
     var searchText = $('#searchText').val(); 
     projectRegistration.displayTeamTable(sortId, searchText); 
     F.unlock_scroll(self); 
    } 
}); 

希望它能幫上忙。

+0

謝謝,它的工作。 – VPK