Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Bootstrap 5 模态框


模态框

模态框组件是一个对话框/弹出窗口,显示在当前页面的最上层


如何创建模态框

以下示例展示了如何创建一个基本的模态框

示例

<!-- 打开模态框的按钮 -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#myModal">
  打开模态框
</button>

<!-- 模态框 -->
<div class="modal" id="myModal">
  <div class="modal-dialog">
    <div class="modal-content">

      <!-- 模态框头部 -->
      <div class="modal-header">
        <h4 class="modal-title">模态框标题</h4>
        <button type="button" class="btn-close" data-bs-dismiss="modal"></button>
      </div>

      <!-- 模态框内容 -->
      <div class="modal-body">
        模态框内容...
      </div>

      <!-- 模态框底部 -->
      <div class="modal-footer">
        <button type="button" class="btn btn-danger" data-bs-dismiss="modal">关闭</button>
      </div>

    </div>
  </div>
</div>
自己试一试 »

添加动画

使用 .fade 类为打开和关闭模态框添加淡入淡出效果

示例

<!-- 淡入淡出模态框 -->
<div class="modal fade"></div>

<!-- 无动画模态框 -->
<div class="modal"></div>
自己试一试 »


模态框大小

通过添加 .modal-sm 类来改变模态框的大小,用于创建小型模态框(最大宽度 300px),.modal-lg 类用于创建大型模态框(最大宽度 800px),或 .modal-xl 类用于创建超大型模态框(最大宽度 1140px)。默认情况下,最大宽度为 500px。

将大小类添加到具有类 .modal-dialog<div> 元素中

小型模态框

<div class="modal-dialog modal-sm">
自己试一试 »

大型模态框

<div class="modal-dialog modal-lg">
自己试一试 »

超大型模态框

<div class="modal-dialog modal-xl">
自己试一试 »

默认情况下,模态框为 "中等" 大小(最大宽度 500px)。


全屏模态框

如果你希望模态框横跨页面的整个宽度和高度,请使用 .modal-fullscreen

示例

<div class="modal-dialog modal-fullscreen">
自己试一试 »

响应式全屏模态框

你也可以使用 .modal-fullscreen-*-* 类来控制模态框何时应处于全屏状态

描述 示例
.modal-fullscreen-sm-down 小于 576px 时全屏 试一试
.modal-fullscreen-md-down 小于 768px 时全屏 试一试
.modal-fullscreen-lg-down 小于 992px 时全屏 试一试
.modal-fullscreen-xl-down 小于 1200px 时全屏 试一试
.modal-fullscreen-xxl-down 小于 1400px 时全屏 试一试

居中模态框

使用 .modal-dialog-centered 类将模态框垂直和水平居中于页面内

示例

<div class="modal-dialog modal-dialog-centered">
自己试一试 »

滚动模态框

当模态框内包含大量内容时,页面会添加一个滚动条。请查看以下示例以了解

示例

<div class="modal-dialog">
自己试一试 »

然而,通过在 .modal-dialog 中添加 .modal-dialog-scrollable,可以实现仅在模态框内滚动,而不是页面本身

示例

<div class="modal-dialog modal-dialog-scrollable">
自己试一试 »


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.