Popovers弹出提示框
Documentation and examples for adding Bootstrap popovers, like those found in iOS, to any element on your site.向站点上的任何元素添加Bootstrap弹出窗口(如iOS中的弹出窗口)的文档和示例。
Overview概述
Things to know when using the popover plugin:使用popover插件时需要了解的事项:
Popovers rely on the 3rd party library Popper for positioning.弹出提示框依靠第三方库Popper进行定位。You must include popper.min.js before bootstrap.js or use你必须在bootstrap.js前面包含popper.min.js,或者使用bootstrap.bundle.min.js
/bootstrap.bundle.js
which contains Popper in order for popovers to work!bootstrap.bundle.min.js
/bootstrap.bundle.js
,它们已经包含了Proper,从而使弹出提示框正常起作用。Popovers require the tooltip plugin as a dependency.弹出提示框需要工具提示插件作为依赖项。Popovers are opt-in for performance reasons, so you must initialize them yourself.由于性能原因,弹出框是可选的,所以您必须自己初始化它们。Zero-length长度为零的title
andcontent
values will never show a popover.title
值和content
值永远不会显示弹出框。Specify指定container: 'body'
to avoid rendering problems in more complex components (like our input groups, button groups, etc).container: 'body'
以避免在更复杂的组件(如输入组、按钮组等)中出现渲染问题。Triggering popovers on hidden elements will not work.在隐藏元素上触发弹出窗口将不起作用。Popovers for必须在包装器元素上触发.disabled
ordisabled
elements must be triggered on a wrapper element..disabled
或disabled
元素的弹出框。When triggered from anchors that wrap across multiple lines, popovers will be centered between the anchors' overall width.当从环绕多行的锚触发时,弹出框将在锚的总宽度之间居中。Use在您的.text-nowrap
on your<a>
s to avoid this behavior.<a>
上使用.text-nowrap
;这是为了避免这种行为。Popovers must be hidden before their corresponding elements have been removed from the DOM.必须先隐藏弹出框,然后才能从DOM中删除其相应的元素。Popovers can be triggered thanks to an element inside a shadow DOM.由于影子DOM中的元素,所以可以触发弹出框。
prefers-reduced-motion
media query. prefers-reduced-motion
媒体查询。Keep reading to see how popovers work with some examples.继续阅读一些例子,看看流行音乐是如何工作的。
Example: Enable popovers everywhere示例:在任何地方启用弹出窗口
One way to initialize all popovers on a page would be to select them by their 初始化页面上所有弹出框的一种方法是通过其data-bs-toggle
attribute:data-bs-toggle
属性选择它们:
var popoverTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="popover"]'))
var popoverList = popoverTriggerList.map(function (popoverTriggerEl) {
return new bootstrap.Popover(popoverTriggerEl)
})
Example: Using the container
option示例:使用container
选项
container
optionWhen you have some styles on a parent element that interfere with a popover, you’ll want to specify a custom 当父元素上的某些样式干扰了popover时,您需要指定一个container
so that the popover’s HTML appears within that element instead.container
容器,以便popover的HTML显示在该元素中。
var popover = new bootstrap.Popover(document.querySelector('.example-popover'), {
container: 'body'
})
Example例子
<button type="button" class="btn btn-lg btn-danger" data-bs-toggle="popover" title="Popover title" data-bs-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
Four directions四个方向
Four options are available: top, right, bottom, and left aligned. 有四个选项可用:上对齐、右对齐、下对齐和左对齐。Directions are mirrored when using Bootstrap in RTL.在RTL中使用Bootstrap时会镜像方向。
<button type="button" class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="top" data-bs-content="Top popover">
Popover on top
</button>
<button type="button" class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="right" data-bs-content="Right popover">
Popover on right
</button>
<button type="button" class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="bottom" data-bs-content="Bottom popover">
Popover on bottom
</button>
<button type="button" class="btn btn-secondary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="left" data-bs-content="Left popover">
Popover on left
</button>
Dismiss on next click下一次单击时撤除
Use the 用户下一次单击不同于toggle元素的元素时,使用focus
trigger to dismiss popovers on the user’s next click of a different element than the toggle element.focus
触发器关闭弹出框。
Specific markup required for dismiss-on-next-click下一次单击时解除所需的特定标记
For proper cross-browser and cross-platform behavior, you must use the <a>
tag, not the <button>
tag, and you also must include a tabindex
attribute.
<a tabindex="0" class="btn btn-lg btn-danger" role="button" data-bs-toggle="popover" data-bs-trigger="focus" title="Dismissible popover" data-bs-content="And here's some amazing content. It's very engaging. Right?">Dismissible popover</a>
var popover = new bootstrap.Popover(document.querySelector('.popover-dismiss'), {
trigger: 'focus'
})
Disabled elements禁用元素
Elements with the 具有disabled
attribute aren’t interactive, meaning users cannot hover or click them to trigger a popover (or tooltip). disabled
属性的元素是非交互式的,这意味着用户不能悬停或单击它们来触发popover(或工具提示)。As a workaround, you’ll want to trigger the popover from a wrapper 作为一种解决方法,您需要从包装器<div>
or <span>
, ideally made keyboard-focusable using tabindex="0"
.<div>
或<span>
触发弹出窗口,理想情况下使用tabindex="0"
使键盘可聚焦。
For disabled popover triggers, you may also prefer 对于禁用的popover触发器,您也可以选择data-bs-trigger="hover focus"
so that the popover appears as immediate visual feedback to your users as they may not expect to click on a disabled element.data-bs-trigger="hover focus"
以便弹出窗口显示为用户的即时视觉反馈,因为他们可能不希望单击禁用的元素。
<span class="d-inline-block" tabindex="0" data-bs-toggle="popover" data-bs-trigger="hover focus" data-bs-content="Disabled popover">
<button class="btn btn-primary" type="button" disabled>Disabled button</button>
</span>
Sass
Variables变量
$popover-font-size: $font-size-sm;
$popover-bg: $white;
$popover-max-width: 276px;
$popover-border-width: $border-width;
$popover-border-color: rgba($black, .2);
$popover-border-radius: $border-radius-lg;
$popover-inner-border-radius: subtract($popover-border-radius, $popover-border-width);
$popover-box-shadow: $box-shadow;
$popover-header-bg: shade-color($popover-bg, 6%);
$popover-header-color: $headings-color;
$popover-header-padding-y: .5rem;
$popover-header-padding-x: $spacer;
$popover-body-color: $body-color;
$popover-body-padding-y: $spacer;
$popover-body-padding-x: $spacer;
$popover-arrow-width: 1rem;
$popover-arrow-height: .5rem;
$popover-arrow-color: $popover-bg;
$popover-arrow-outer-color: fade-in($popover-border-color, .05);
Usage用法
Enable popovers via JavaScript:通过JavaScript启用弹出窗口:
var exampleEl = document.getElementById('example')
var popover = new bootstrap.Popover(exampleEl, options)
Making popovers work for keyboard and assistive technology users为键盘和辅助技术用户制作Popover
To allow keyboard users to activate your popovers, you should only add them to HTML elements that are traditionally keyboard-focusable and interactive (such as links or form controls). 要允许键盘用户激活您的弹出框,您应该只将它们添加到传统上以键盘为焦点且交互的HTML元素中(例如链接或表单控件)。Although arbitrary HTML elements (such as 尽管任意HTML元素(譬如<span>
s) can be made focusable by adding the tabindex="0"
attribute, this will add potentially annoying and confusing tab stops on non-interactive elements for keyboard users, and most assistive technologies currently do not announce the popover’s content in this situation. <span>
)都可以添加tabindex="0"
属性,但是这将为键盘用户在非交互元素上添加潜在的恼人和混乱的制表位,并且大多数辅助技术目前不会在这种情况下公布popover的内容。Additionally, do not rely solely on 此外,不要仅仅依靠hover
as the trigger for your popovers, as this will make them impossible to trigger for keyboard users.hover
作为弹出框的触发器,因为这将使键盘用户无法触发弹出框。
While you can insert rich, structured HTML in popovers with the 虽然您可以使用html
option, we strongly recommend that you avoid adding an excessive amount of content. html
选项在弹出窗口中插入丰富的结构化HTML,但我们强烈建议您避免添加过多的内容。The way popovers currently work is that, once displayed, their content is tied to the trigger element with the 弹出窗口当前的工作方式是,一旦显示,它们的内容将绑定到具有aria-describedby
attribute. aria-describedby
属性的触发器元素。As a result, the entirety of the popover’s content will be announced to assistive technology users as one long, uninterrupted stream.因此,popover的全部内容将作为一条长而不间断的流向辅助技术用户发布。
Additionally, while it is possible to also include interactive controls (such as form elements or links) in your popover (by adding these elements to the 此外,虽然也可以在popover中包含交互控件(例如表单元素或链接)(通过将这些元素添加到允许的属性和标记的allowList
of allowed attributes and tags), be aware that currently the popover does not manage keyboard focus order. allowList
中),但请注意,popover当前不管理键盘焦点顺序。When a keyboard user opens a popover, focus remains on the triggering element, and as the popover usually does not immediately follow the trigger in the document’s structure, there is no guarantee that moving forward/pressing TAB will move a keyboard user into the popover itself. 当键盘用户打开popover时,焦点仍在触发元素上,并且由于popover通常不会立即跟随文档结构中的触发器,因此无法保证向前移动/按TAB键会将键盘用户移动到popover本身中。In short, simply adding interactive controls to a popover is likely to make these controls unreachable/unusable for keyboard users and users of assistive technologies, or at the very least make for an illogical overall focus order. 简言之,简单地将交互式控件添加到popover可能会使键盘用户和辅助技术用户无法访问/无法使用这些控件,或者至少会导致整体焦点顺序不合逻辑。In these cases, consider using a modal dialog instead.在这些情况下,考虑使用模态对话框来代替。
Options选项
Options can be passed via data attributes or JavaScript. 选项可以通过数据属性或JavaScript传递。For data attributes, append the option name to 对于数据属性,将选项名称附加到data-bs-
, as in data-bs-animation=""
. data-bs-
,如data-bs-animation=""
。Make sure to change the case type of the option name from camelCase to kebab-case when passing the options via data attributes. 通过数据属性传递选项时,确保将选项名称的大小写类型从camelCase更改为kebab case。For example, instead of using 例如,不是使用data-bs-customClass="beautifier"
, use data-bs-custom-class="beautifier"
.data-bs-customClass="beautifier"
,而是使用data-bs-custom-class="beautifier"
。
sanitize
, sanitizeFn
, and allowList
options cannot be supplied using data attributes.sanitize
、sanitizeFn
和allowList
选项。
animation |
boolean | true |
|
container |
string | element | false | false |
|
content |
string | element | function | '' |
|
delay |
number | object | 0 |
|
html |
boolean | false |
innerText property will be used to insert content into the DOM. false ,innerText 属性将用于将内容插入DOM。 |
placement |
string | function | 'right' |
|
selector |
string | false | false |
|
template |
string | '<div class="popover" role="tooltip"><div class="popover-arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>' |
|
title |
string | element | function | '' |
|
trigger |
string | 'click' |
click | hover | focus | manual 。manual |
fallbackPlacements |
array | ['top', 'right', 'bottom', 'left'] |
|
boundary |
string | element | 'clippingParents' |
'clippingParents' and can accept an HTMLElement reference (via JavaScript only). 'clippingParents' ,可以接受HTMLElement引用(仅通过JavaScript)。 |
customClass |
string | function | '' |
|
sanitize |
boolean | true |
'template' , 'content' and 'title' options will be sanitized. 'template' ,'content' 和'title' 选项将被清除。 |
allowList |
object | Default value | |
sanitizeFn |
null | function | null |
|
offset |
array | string | function | [0, 8] |
|
popperConfig |
null | object | function | null |
|
Data attributes for individual popovers单个Popover的数据属性
Options for individual popovers can alternatively be specified through the use of data attributes, as explained above.如上文所述,也可以通过使用数据属性来指定各个弹出框的选项。
Using function with 使用函数配合popperConfig
var popover = new bootstrap.Popover(element, {
popperConfig: function (defaultBsPopperConfig) {
// var newPopperConfig = {...}
// use defaultBsPopperConfig if needed...
// return newPopperConfig
}
})
Methods方法
Asynchronous methods and transitions异步方法和转换
All API methods are asynchronous and start a transition. 所有API方法都是异步的,并开始转换。They return to the caller as soon as the transition is started but before it ends. 转换一开始,它们就返回到调用者,但在转换结束之前。In addition, a method call on a transitioning component will be ignored.此外,转换组件上的方法调用将被忽略。
See our JavaScript documentation for more information有关更多信息,请参阅JavaScript文档.
show
Reveals an element’s popover. 显示元素的popover。Returns to the caller before the popover has actually been shown在实际显示popover之前返回给调用者 (i.e. before the (即,在shown.bs.popover
event occurs). shown.bs.popover
事件发生之前)。This is considered a “manual” triggering of the popover. 这被认为是popover的“手动”触发。Popovers whose title and content are both zero-length are never displayed.标题和内容均为零长度的弹出窗口永远不会显示。
myPopover.show()
hide
Hides an element’s popover. 隐藏元素的popover。Returns to the caller before the popover has actually been hidden在popover实际隐藏之前返回给调用方 (i.e. before the (即,在hidden.bs.popover
event occurs). hidden.bs.popover
事件发生之前)。This is considered a “manual” triggering of the popover.这被认为是弹出窗口的“手动”触发。
myPopover.hide()
toggle
Toggles an element’s popover. 切换元素的弹出窗口。Returns to the caller before the popover has actually been shown or hidden在弹出窗口实际显示或隐藏之前返回给调用者 (i.e. before the (即在shown.bs.popover
or hidden.bs.popover
event occurs). shown.bs.popover
或hhidden.bs.popover
事件发生之前)。This is considered a “manual” triggering of the popover.这被认为是弹出窗口的“手动”触发。
myPopover.toggle()
dispose
Hides and destroys an element’s popover (Removes stored data on the DOM element). 隐藏和销毁元素的popover(删除DOM元素上存储的数据)。Popovers that use delegation (which are created using the 使用委托的弹出窗口(使用selector
option) cannot be individually destroyed on descendant trigger elements.selector
选项创建)不能在后代触发器元素上单独销毁。
myPopover.dispose()
enable
Gives an element’s popover the ability to be shown. 赋予元素的弹出窗口显示的能力。Popovers are enabled by default.默认情况下启用弹出窗口。
myPopover.enable()
disable
Removes the ability for an element’s popover to be shown. 删除显示元素弹出窗口的功能。The popover will only be able to be shown if it is re-enabled.仅当重新启用时,才能显示弹出窗口。
myPopover.disable()
toggleEnabled
Toggles the ability for an element’s popover to be shown or hidden.切换显示或隐藏元素弹出窗口的功能。
myPopover.toggleEnabled()
update
Updates the position of an element’s popover.更新元素弹出窗口的位置。
myPopover.update()
getInstance
Static method which allows you to get the popover instance associated with a DOM element静态方法,允许您获取与DOM元素关联的popover实例
var exampleTriggerEl = document.getElementById('example')
var popover = bootstrap.Popover.getInstance(exampleTriggerEl) // Returns a Bootstrap popover instance
getOrCreateInstance
Static method which allows you to get the popover instance associated with a DOM element, or create a new one in case it wasn’t initialised静态方法,允许您获取与DOM元素关联的popover实例,或者在未初始化的情况下创建一个新实例
var exampleTriggerEl = document.getElementById('example')
var popover = bootstrap.Popover.getOrCreateInstance(exampleTriggerEl) // Returns a Bootstrap popover instance
Events事件
show.bs.popover | show instance method is called.show 实例方法时,此事件立即激发。 |
shown.bs.popover | |
hide.bs.popover | hide instance method has been called.hide 实例方法后,将立即触发此事件。 |
hidden.bs.popover | |
inserted.bs.popover | show.bs.popover event when the popover template has been added to the DOM.show.bs.popover 事件之后激发此事件。 |
var myPopoverTrigger = document.getElementById('myPopover')
myPopoverTrigger.addEventListener('hidden.bs.popover', function () {
// do something...
})