bootstrap弹窗;bootstrap弹窗居中

2025-03-25 0 11

Bootstrap弹窗;bootstrap弹窗居中

在网页开发中,使用Bootstrap框架创建弹窗并使其居中显示是一个常见的需求。解决方案是利用Bootstrap自带的modal组件,并通过简单的配置或自定义样式来实现弹窗的居中显示。

一、使用Bootstrap默认类名

Bootstrap提供了非常方便的模态框(modal)组件,可以快速创建弹窗效果。对于居中显示,只需添加特定的类名即可。

html
<!-- 按钮触发模态框 --></p>

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModalCenter">
  居中弹窗
</button>

<p><!-- 模态框 --></p>

<div class="modal fade" id="exampleModalCenter" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true">
  <div class="modal-dialog modal-dialog-centered" role="document"> <!-- 添加modal-dialog-centered类名 -->
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="exampleModalLongTitle">居中标题</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">×</span>
        </button>
      </div>
      <div class="modal-body">
        这里是居中的弹窗内容...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
        <button type="button" class="btn btn-primary">保存</button>
      </div>
    </div>
  </div>
</div>

<p>

上述代码中,<div class="modal-dialog modal-dialog-centered">这一行中的modal-dialog-centered类名就是让弹窗垂直居中的关键。这种方式简单易用,不需要额外写CSS样式。

二、自定义CSS样式实现居中

如果需要更灵活地控制弹窗的居中方式,可以通过自定义CSS样式来实现。

css
.custom-modal {
display: flex;
align-items: center;
justify-content: center;
}

对应的HTML结构如下:

html
<!-- 按钮触发模态框 --></p>

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#customModal">
  自定义居中弹窗
</button>

<p><!-- 模态框 --></p>

<div class="modal fade custom-modal" id="customModal" role="dialog" aria-labelledby="customModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title" id="customModalLabel">自定义居中标题</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">×</span>
        </button>
      </div>
      <div class="modal-body">
        自定义居中的弹窗内容...
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-secondary" data-dismiss="modal">关闭</button>
        <button type="button" class="btn btn-primary">保存</button>
      </div>
    </div>
  </div>
</div>

<p>

这里我们给最外层的.modal元素添加了一个custom-modal类名,并且通过flex布局让弹窗在页面中水平和垂直居中。这种方式适合对样式有特殊要求的情况。

这两种方法都可以很好地实现Bootstrap弹窗居中显示的效果,开发者可以根据自己的实际需求选择合适的方式。种方法更加简洁,直接利用了Bootstrap框架本身提供的功能;第二种方法则更加灵活,能够满足更多定制化的需求。

Image

1. 本站所有资源来源于用户上传和网络,因此不包含技术服务请大家谅解!如有侵权请邮件联系客服!cheeksyu@vip.qq.com
2. 本站不保证所提供下载的资源的准确性、安全性和完整性,资源仅供下载学习之用!如有链接无法下载、失效或广告,请联系客服处理!
3. 您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容资源!如用于商业或者非法用途,与本站无关,一切后果请用户自负!
4. 如果您也有好的资源或教程,您可以投稿发布,成功分享后有积分奖励和额外收入!
5.严禁将资源用于任何违法犯罪行为,不得违反国家法律,否则责任自负,一切法律责任与本站无关

源码下载