有没有人知道是否有一种简单的方法来增加Bootstrap工具提示的工具提示偏移量?文档中没有任何内容。在某些情况下,工具提示会遮挡目标区域并阻止点击。
答案 0 :(得分:7)
你可以尝试这样的事情......
$("[data-toggle=tooltip]").hover(function(){
$('.tooltip').css('top',parseInt($('.tooltip').css('top')) + 15 + 'px')
});
这会增加垂直偏移量,但如果使用“left”而不是“top”,则应该适用于水平偏移。
Bootply上的自定义工具提示位置:http://www.bootply.com/59977
答案 1 :(得分:1)
此示例偏移到右侧(即增加左侧位置)。注意:仅为强调添加“隐藏”延迟。我检查事件类型以及在mouseenter和mouseleave上触发悬停。
> let ref f n=
- if(n<=2)then 1
- else f(n-1)+f(n-2)
- ;;
val ref : f:(int -> int) -> n:int -> int
> printf "%i" (f 10)
- ;;
printf "%i" (f 10)
-------------^
stdin(9,14): error FS0039: The value or constructor 'f' is not defined