Modal plugin of Bootstrap 2 is not displayed by the center

后端 未结 5 622
没有蜡笔的小新
没有蜡笔的小新 2021-02-04 11:10

I use bootstrap modal plugin. But modal dialog is not shown in center. Why? my mistake?

http://dl.dropbox.com/u/573972/stackoverflow/bootstrap/modal.html



        
5条回答
  •  鱼传尺愫
    2021-02-04 11:57

    Capture the show event of the .modal and then calculate the new position:

    $('body').on('show', '.modal', function(){
      $(this).css({'margin-top':($(window).height()-$(this).height())/2,'top':'0'});
    });​
    

    DEMO: http://jsfiddle.net/sonic1980/b2EHU/

提交回复
热议问题