我想在 viewport (中间)我试图添加一些 css 属性的中心我的模式
.modal { position: fixed; top:50%; left:50%; }
我正在使用这个例子 http://jsfiddle.net/rniemeyer/Wjjnd/
我尽力了
$("#MyModal").modal('show').css(
{
'margin-top': function () {
return -($(this).height() / 2);
},
'margin-left': function () {
return -($(this).width() / 2);
}
})