bootstarp modal框居中

来源:互联网 发布:怎么让淘宝号快速升3心 编辑:程序博客网 时间:2024/05/23 23:48

bootstrap.js的大概1154行:

this.$element.css({      paddingLeft:  !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '',      paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : ''})

后加:

 // 是弹出框居中    var $modal_dialog = $(this.$element[0]).find('.modal-dialog');    var m_top = ( $(window).height() - $modal_dialog.height() )/2;    $modal_dialog.css({'margin': m_top + 'px auto'});  }

P.S. 需要的东西每次都要查一遍太麻烦了。以后注意整理。
插入位置

0 0
原创粉丝点击