本文主要為大家詳細介紹了BootStrap模態框不垂直居中的解決方法,具有一定的參考價值,感興趣的小伙伴們可以參考一下,希望能幫助到大家。
解決問題:BootStrap自帶的模態框不垂直居中
#解決方案:呼叫BootStrap為我們提供的方法$('.modal').on('show .bs.modal', function(){});
在模態框顯示之前我們用JS修改他的Top值,
具體程式碼如下:
/** * 垂直居中模态框 **/ function centerModals() { $('.modal').each(function(i) { var $clone = $(this).clone().css('display', 'block').appendTo('body'); var top = Math.round(($clone.height() - $clone.find('.modal-content').height()) / 2); top = top > 50 ? top : 0; $clone.remove(); $(this).find('.modal-content').css("margin-top", top - 50); }); } // 在模态框出现的时候调用垂直居中方法 $('.modal').on('show.bs.modal', centerModals); // 在窗口大小改变的时候调用垂直居中方法 $(window).on('resize', centerModals);
相關推薦:
AJAX 和SpringMVC 實作bootstrap模態框的分頁查詢功能詳解
#bootstrap模態框嵌套、tabindex屬性、去除陰影的方法
#以上是BootStrap模態框不垂直居中如何解決的詳細內容。更多資訊請關注PHP中文網其他相關文章!