码迷,mamicode.com
首页 > 其他好文 > 详细

Bootstrap(v3.2.0)模态框(modal)垂直居中

时间:2014-10-22 14:19:25      阅读:761      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   os   ar   java   sp   文件   

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";
          }
      });

 

Bootstrap(v3.2.0)模态框(modal)垂直居中

标签:style   blog   color   io   os   ar   java   sp   文件   

原文地址:http://www.cnblogs.com/haha12/p/4042799.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!