jqueryui dialog positioning

前端 未结 8 813
抹茶落季
抹茶落季 2020-12-24 03:09

I am using JQuery UI and would like to position my dialog horizontally centered but vertically above center, maybe by a fixed amount of pixels or a relative distance from th

8条回答
  •  有刺的猬
    2020-12-24 03:56

    I adjusted Exlord's answer to fit.

    position: ['center-7%', 'center-12%']

    This adjusts horizontally and vertically

    $(".popup").dialog({    
    position: ['center-7%', 'center-12%'],
    title: 'Updating',
        width: "auto",
    }
    });
    

提交回复
热议问题