简体   繁体   中英

how to show an modal pop up in the center of screen and maintain the position on resizing the screen also

i have an modal pop up i am showing it in the middle of screen using javascript

$('div.openIDPopup').css({ 'height': $(document).height() + 'px',
        'width': $(window).width() + 'px',
        'visibility': 'visible'
    })
        .fadeIn('slow');
    $('div.openId').css({ 'visibility': 'visible',
        'top': ($(window).height() / 4) + 'px',
        'left': ($(window).width() / 3) + 'px'
    })
    .fadeIn('slow');

but on resizing the screen it is staying there as it is positioned absolutely how to get that feature.

You might want to check out this CSS based solution: http://www.wpdfd.com/editorial/thebox/deadcentre4.html

It relies on using a negative margin and I think it works great.

参见此处了解其操作方法: http//www.sohtanaka.com/web-design/examples/modal-window/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM