Bootstrap(v3.2.0)模態框(modal)垂直居中方法:
在bootstrap.js檔案900行後面新增如下程式碼,便可以實現垂直居中。
that.$element.children().eq(0).css("position", "absolute").css({ "margin":"0px", "top": function () { return (that.$element.height() - that.$element.children().eq(0).height()-40) / 2 + "px"; }, "left": function () { return (that.$element.width() - that.$element.children().eq(0).width()) / 2 + "px"; } });