Modal plugin of Bootstrap 2 is not displayed by the center

后端 未结 5 635
没有蜡笔的小新
没有蜡笔的小新 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:52

    Based on p4810's answer above but deal with where the user is on the screen too. Works with absolute positioning.

    $('#YourModal').modal().css(
                {
                    'margin-top': function () {
                        return window.pageYOffset-($(this).height() / 2 );
                    }
                });
    

提交回复
热议问题