JavaScript

超轻量级php框架startmvc

bootstarp modal框居中显示的实现代码

更新时间:2020-04-24 02:05:01 作者:startmvc
bootstrap.js的大概1154行:this.$element.css({paddingLeft:!this.bodyIsOverflowing&&modalIsOverflowing?this.scrol

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. 需要的东西每次都要查一遍太麻烦了。以后注意整理。

以上所述是小编给大家介绍的bootstarp modal框居中显示的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

bootstrap modal 居中 bootstarp 居中