模态
使用 Bootstrap 的 JavaScript 模态插件向您的站点添加对话框,用于灯箱、用户通知或完全自定义的内容。
这个怎么运作
在开始使用 Bootstrap 的模态组件之前,请务必阅读以下内容,因为我们的菜单选项最近发生了变化。
- 模态框是用 HTML、CSS 和 JavaScript 构建的。它们位于文档中的所有其他内容之上,并从中删除滚动,
<body>
以便模态内容滚动。 - 单击模态“背景”将自动关闭模态。
- Bootstrap 一次只支持一个模式窗口。不支持嵌套模式,因为我们认为它们是糟糕的用户体验。
- 模态使用
position: fixed
,它的渲染有时可能有点特别。只要有可能,将您的模态 HTML 放在顶级位置,以避免来自其他元素的潜在干扰。.modal
在另一个固定元素中嵌套 a 时,您可能会遇到问题。 - 再一次,由于
position: fixed
在移动设备上使用模态框有一些注意事项。有关详细信息,请参阅我们的浏览器支持文档。 - 由于 HTML5 定义其语义的方式,
autofocus
HTML 属性在 Bootstrap 模式中无效。要达到相同的效果,请使用一些自定义 JavaScript:
var myModal = document.getElementById('myModal')
var myInput = document.getElementById('myInput')
myModal.addEventListener('shown.bs.modal', function () {
myInput.focus()
})
prefers-reduced-motion
媒体查询。请参阅
我们可访问性文档的减少运动部分。
继续阅读演示和使用指南。
例子
模态组件
下面是一个静态模态示例(意味着它的position
和display
已被覆盖)。包括模态标题、模态正文(需要padding
)和模态页脚(可选)。我们要求您尽可能在模式标题中包含解除操作,或提供另一个明确的解除操作。
<div class="modal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<p>Modal body text goes here.</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
现场演示
通过单击下面的按钮来切换工作模式演示。它将向下滑动并从页面顶部淡入。
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
静态背景
当背景设置为静态时,在其外部单击时模态将不会关闭。单击下面的按钮进行尝试。
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
Launch static backdrop modal
</button>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Understood</button>
</div>
</div>
</div>
</div>
滚动长内容
当模式对于用户的视口或设备而言变得太长时,它们会独立于页面本身滚动。试试下面的演示,看看我们的意思。
您还可以创建一个可滚动的模式,允许通过添加.modal-dialog-scrollable
来滚动模式主体.modal-dialog
。
<!-- Scrollable modal -->
<div class="modal-dialog modal-dialog-scrollable">
...
</div>
垂直居中
添加.modal-dialog-centered
到.modal-dialog
垂直居中模式。
<!-- Vertically centered modal -->
<div class="modal-dialog modal-dialog-centered">
...
</div>
<!-- Vertically centered scrollable modal -->
<div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
...
</div>
工具提示和弹出框
工具提示和弹出框可以根据需要放置在模式中。当模态框关闭时,其中的任何工具提示和弹出框也会自动关闭。
<div class="modal-body">
<h5>Popover in a modal</h5>
<p>This <a href="#" role="button" class="btn btn-secondary popover-test" title="Popover title" data-bs-content="Popover body content is set in this attribute.">button</a> triggers a popover on click.</p>
<hr>
<h5>Tooltips in a modal</h5>
<p><a href="#" class="tooltip-test" title="Tooltip">This link</a> and <a href="#" class="tooltip-test" title="Tooltip">that link</a> have tooltips on hover.</p>
</div>
使用网格
通过嵌套.container-fluid
在.modal-body
. 然后,像在其他任何地方一样使用普通的网格系统类。
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-md-4">.col-md-4</div>
<div class="col-md-4 ms-auto">.col-md-4 .ms-auto</div>
</div>
<div class="row">
<div class="col-md-3 ms-auto">.col-md-3 .ms-auto</div>
<div class="col-md-2 ms-auto">.col-md-2 .ms-auto</div>
</div>
<div class="row">
<div class="col-md-6 ms-auto">.col-md-6 .ms-auto</div>
</div>
<div class="row">
<div class="col-sm-9">
Level 1: .col-sm-9
<div class="row">
<div class="col-8 col-sm-6">
Level 2: .col-8 .col-sm-6
</div>
<div class="col-4 col-sm-6">
Level 2: .col-4 .col-sm-6
</div>
</div>
</div>
</div>
</div>
</div>
改变模态内容
有一堆按钮都触发相同的模式,内容略有不同?使用event.relatedTarget
和HTMLdata-bs-*
属性根据单击的按钮来改变模式的内容。
下面是一个现场演示,后面是示例 HTML 和 JavaScript。有关更多信息,请阅读模态事件文档以获取有关relatedTarget
.
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@getbootstrap">Open modal for @getbootstrap</button>
<div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">New message</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form>
<div class="mb-3">
<label for="recipient-name" class="col-form-label">Recipient:</label>
<input type="text" class="form-control" id="recipient-name">
</div>
<div class="mb-3">
<label for="message-text" class="col-form-label">Message:</label>
<textarea class="form-control" id="message-text"></textarea>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Send message</button>
</div>
</div>
</div>
</div>
var exampleModal = document.getElementById('exampleModal')
exampleModal.addEventListener('show.bs.modal', function (event) {
// Button that triggered the modal
var button = event.relatedTarget
// Extract info from data-bs-* attributes
var recipient = button.getAttribute('data-bs-whatever')
// If necessary, you could initiate an AJAX request here
// and then do the updating in a callback.
//
// Update the modal's content.
var modalTitle = exampleModal.querySelector('.modal-title')
var modalBodyInput = exampleModal.querySelector('.modal-body input')
modalTitle.textContent = 'New message to ' + recipient
modalBodyInput.value = recipient
})
在模态之间切换
通过巧妙地放置data-bs-target
和data-bs-toggle
属性在多个模式之间切换。例如,您可以在已打开的登录模式中切换密码重置模式。请注意,不能同时打开多个模态——此方法只是在两个单独的模态之间切换。
<div class="modal fade" id="exampleModalToggle" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalToggleLabel">Modal 1</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Show a second modal and hide this one with the button below.
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-bs-target="#exampleModalToggle2" data-bs-toggle="modal">Open second modal</button>
</div>
</div>
</div>
</div>
<div class="modal fade" id="exampleModalToggle2" aria-hidden="true" aria-labelledby="exampleModalToggleLabel2" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalToggleLabel2">Modal 2</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
Hide this modal and show the first with the button below.
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-bs-target="#exampleModalToggle" data-bs-toggle="modal">Back to first</button>
</div>
</div>
</div>
</div>
<a class="btn btn-primary" data-bs-toggle="modal" href="#exampleModalToggle" role="button">Open first modal</a>
更改动画
变量决定模态淡入动画前$modal-fade-transform
的变换状态,变量决定模态淡入动画结束时的变换。.modal-dialog
$modal-show-transform
.modal-dialog
例如,如果您想要放大动画,您可以设置$modal-fade-transform: scale(.8)
.
移除动画
对于只是出现而不是淡入查看.fade
的模态,请从模态标记中删除该类。
<div class="modal" tabindex="-1" aria-labelledby="..." aria-hidden="true">
...
</div>
动态高度
如果模态框在打开时的高度发生变化,您应该调用myModal.handleUpdate()
以重新调整模态框的位置,以防出现滚动条。
可访问性
请务必将aria-labelledby="..."
引用模态标题添加到.modal
。此外,您可以使用aria-describedby
on 来描述您的模态对话框.modal
。请注意,您不需要添加role="dialog"
,因为我们已经通过 JavaScript 添加了它。
嵌入 YouTube 视频
在模态中嵌入 YouTube 视频需要额外的 JavaScript,而不是 Bootstrap 来自动停止播放等等。有关更多信息,请参阅这篇有用的 Stack Overflow 帖子。
可选尺寸
模态框有三种可选尺寸,可通过修饰符类放置在.modal-dialog
. 这些尺寸在某些断点处开始,以避免在较窄的视口上出现水平滚动条。
尺寸 | 班级 | 模态最大宽度 |
---|---|---|
小的 | .modal-sm |
300px |
默认 | 没有任何 | 500px |
大的 | .modal-lg |
800px |
特大号 | .modal-xl |
1140px |
我们默认的不带修饰符类的模态构成了“中等”大小的模态。
<div class="modal-dialog modal-xl">...</div>
<div class="modal-dialog modal-lg">...</div>
<div class="modal-dialog modal-sm">...</div>
全屏模式
另一个覆盖是弹出覆盖用户视口的模式的选项,可通过放置在.modal-dialog
.
班级 | 可用性 |
---|---|
.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 |
<!-- Full screen modal -->
<div class="modal-dialog modal-fullscreen-sm-down">
...
</div>
萨斯
变量
$modal-inner-padding: $spacer;
$modal-footer-margin-between: .5rem;
$modal-dialog-margin: .5rem;
$modal-dialog-margin-y-sm-up: 1.75rem;
$modal-title-line-height: $line-height-base;
$modal-content-color: null;
$modal-content-bg: $white;
$modal-content-border-color: rgba($black, .2);
$modal-content-border-width: $border-width;
$modal-content-border-radius: $border-radius-lg;
$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width);
$modal-content-box-shadow-xs: $box-shadow-sm;
$modal-content-box-shadow-sm-up: $box-shadow;
$modal-backdrop-bg: $black;
$modal-backdrop-opacity: .5;
$modal-header-border-color: $border-color;
$modal-footer-border-color: $modal-header-border-color;
$modal-header-border-width: $modal-content-border-width;
$modal-footer-border-width: $modal-header-border-width;
$modal-header-padding-y: $modal-inner-padding;
$modal-header-padding-x: $modal-inner-padding;
$modal-header-padding: $modal-header-padding-y $modal-header-padding-x; // Keep this for backwards compatibility
$modal-sm: 300px;
$modal-md: 500px;
$modal-lg: 800px;
$modal-xl: 1140px;
$modal-fade-transform: translate(0, -50px);
$modal-show-transform: none;
$modal-transition: transform .3s ease-out;
$modal-scale-transform: scale(1.02);
环形
响应式全屏模式是通过$breakpoints
地图和scss/_modal.scss
.
@each $breakpoint in map-keys($grid-breakpoints) {
$infix: breakpoint-infix($breakpoint, $grid-breakpoints);
$postfix: if($infix != "", $infix + "-down", "");
@include media-breakpoint-down($breakpoint) {
.modal-fullscreen#{$postfix} {
width: 100vw;
max-width: none;
height: 100%;
margin: 0;
.modal-content {
height: 100%;
border: 0;
@include border-radius(0);
}
.modal-header {
@include border-radius(0);
}
.modal-body {
overflow-y: auto;
}
.modal-footer {
@include border-radius(0);
}
}
}
}
用法
模态插件通过数据属性或 JavaScript 按需切换隐藏内容。它还覆盖默认滚动行为并生成一个.modal-backdrop
以提供一个单击区域,以便在单击模态框外时关闭显示的模态框。
通过数据属性
切换
无需编写 JavaScript 即可激活模式。在控制器元素上设置data-bs-toggle="modal"
,如按钮,以及一个data-bs-target="#foo"
或href="#foo"
以特定模式为目标进行切换。
<button type="button" data-bs-toggle="modal" data-bs-target="#myModal">Launch modal</button>
解雇
可以使用模式data
中按钮上的属性来实现解除,如下所示:
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
或在模态外的按钮上使用data-bs-target
如下所示:
<button type="button" class="btn-close" data-bs-dismiss="modal" data-bs-target="#my-modal" aria-label="Close"></button>
通过 JavaScript
用一行 JavaScript 创建一个模态框:
var myModal = new bootstrap.Modal(document.getElementById('myModal'), options)
选项
选项可以通过数据属性或 JavaScript 传递。对于数据属性,将选项名称附加到 中data-bs-
,如data-bs-backdrop=""
.
姓名 | 类型 | 默认 | 描述 |
---|---|---|---|
backdrop |
布尔值或字符串'static' |
true |
包括一个模态背景元素。或者,指定static 在单击时不关闭模式的背景。 |
keyboard |
布尔值 | true |
按下退出键时关闭模态 |
focus |
布尔值 | true |
初始化时将焦点放在模式上。 |
方法
传递选项
将您的内容激活为模式。接受一个可选选项object
。
var myModal = new bootstrap.Modal(document.getElementById('myModal'), {
keyboard: false
})
切换
手动切换模式。在模态框实际显示或隐藏之前(即在or事件发生之前)返回给调用者。shown.bs.modal
hidden.bs.modal
myModal.toggle()
节目
手动打开一个模态。在模态实际显示之前(即在事件发生之前)返回给调用者。shown.bs.modal
myModal.show()
此外,您可以将 DOM 元素作为参数传递,该参数可以在模式事件中接收(作为relatedTarget
属性)。
var modalToggle = document.getElementById('toggleMyModal') // relatedTarget
myModal.show(modalToggle)
隐藏
手动隐藏模态。在模态框实际上被隐藏之前(即在事件发生之前)返回给调用者。hidden.bs.modal
myModal.hide()
句柄更新
如果模态在打开时的高度发生变化(即出现滚动条时),手动重新调整模态的位置。
myModal.handleUpdate()
处置
销毁元素的模态。(删除 DOM 元素上存储的数据)
myModal.dispose()
获取实例
允许您获取与 DOM 元素关联的模态实例的静态方法
var myModalEl = document.getElementById('myModal')
var modal = bootstrap.Modal.getInstance(myModalEl) // Returns a Bootstrap modal instance
获取或创建实例
静态方法,允许您获取与 DOM 元素关联的模态实例,或创建一个新的实例以防它未初始化
var myModalEl = document.querySelector('#myModal')
var modal = bootstrap.Modal.getOrCreateInstance(myModalEl) // Returns a Bootstrap modal instance
活动
Bootstrap 的模态类公开了一些用于连接模态功能的事件。所有模态事件都在模态本身触发(即在<div class="modal">
)。
事件类型 | 描述 |
---|---|
show.bs.modal |
show 调用实例方法时立即触发此事件。如果由单击引起,则单击的元素可用作relatedTarget 事件的属性。 |
shown.bs.modal |
当模式对用户可见时触发此事件(将等待 CSS 转换完成)。如果由单击引起,则单击的元素可用作relatedTarget 事件的属性。 |
hide.bs.modal |
hide 调用实例方法时立即触发此事件。 |
hidden.bs.modal |
当模态对用户隐藏完成时会触发此事件(将等待 CSS 转换完成)。 |
hidePrevented.bs.modal |
当显示模态时触发此事件,其背景是static 并且在模态外部单击或使用键盘选项执行退出键或data-bs-keyboard 设置为false 。 |
var myModalEl = document.getElementById('myModal')
myModalEl.addEventListener('hidden.bs.modal', function (event) {
// do something...
})