jQuery UI dialog box not positioned center screen

后端 未结 23 3080
失恋的感觉
失恋的感觉 2020-12-01 00:31

I have a jQuery dialog box that is meant to position in the middle of the screen. However, it seems slightly off-center vertically.

Here is the code:

         


        
23条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-01 01:35

    $('#dlg').dialog({
        title: 'My Dialog',
        left: (parseInt(jQuery(window).width())-1200)/2,
        top:(parseInt(jQuery(window).height())-720)/2,
        width: 1200,
        height: 720,
        closed: false,
        cache: false,
        modal: true,
        toolbar:'#dlg-toolbar'
    });
    

提交回复
热议问题