Bootstrap弹出框(Popover)被挤压的问题小结
比较了下bootstrap的popover和一些其它的开源项目,觉得bootstrap的还算不错。没想到第一次就遇到了一个问题。
弹出框显示的时候如果贴近一个列的边沿,就会很窄,如果一个列比较宽还好,而如果遇到这样的列比如:<div class="col-md-2">
,几乎任意位置显示的弹出框都被挤压了。
先看看我的实现以及效果:
js:
$(function (){ $("[data-toggle='popover']").popover({ trigger: 'hover' }); });
html:
<div class="col-md-1"> ... <img src="..." width="50" height="50" data-toggle="popover" data-content='...' title="..." /> ... </div>
效果
不过解决起来很简单,只需在初始化的时候添加一个container属性就可以了:
$(function (){ $("[data-toggle='popover']").popover({ trigger: 'hover', container: 'body' }); });
我们把容器设置成整个页面的body,这样popover就有足够宽的地方了。
实际上在官网上对container的作用是有说明的地址 ,只是没有注意到:
appends the popover to a specific element. example: container: 'body'. this option is particularly useful in that it allows you to position the popover in the flow of the document near the triggering element - which will prevent the popover from floating away from the triggering element during a window resize.
以上所述是小编给大家介绍的bootstrap弹出框(popover)被挤压的问题小结,希望对大家有所帮助
上一篇: Angular排序实例详解
下一篇: angular过滤器实现排序功能
推荐阅读
-
Bootstrap的popover(弹出框)2秒后定时消失的实现代码
-
Bootstrap弹出框(Popover)被挤压的问题小结
-
解决bootstrap中使用modal加载kindeditor时弹出层文本框不能输入的问题
-
解决ios h5 input输入框被输入法弹出一块区域的问题
-
【vue】解决element ui中el-table中使用Popconfirm或Popover无法显示按钮或无法弹出确认框的问题
-
Bootstrap弹出框(Popover)被挤压的问题小结
-
问一个关于做Bootstrap的弹出对话框遇到的问题_html/css_WEB-ITnose
-
bootstrap添加模态窗后,再弹出消息提示框后,原先的滚动条被吃掉了_html/css_WEB-ITnose
-
Bootstrap弹出框modal上层的输入框不能获得焦点问题的解决方法
-
Bootstrap弹出框(modal)垂直居中的问题及解决方案详解