2

我们正在利用 tooltipster 插件在信息图标上显示工具提示。这在悬停时效果很好。但是我们还需要让它显示是否有人也点击了信息图标。

我似乎找不到任何关于如何在悬停和焦点上启用弹出窗口的示例。

这是该项目中已经存在的内容:

HTML:

<a href="#"><span class="tooltip">Some handy tooltip text...</span></a>

Javascript:

if ($('.tooltip').length) {
        $('.tooltip').tooltipster({
            theme: '.tooltipster-shadow',
            maxWidth: 220,
            interactive: true,
            functionReady: function () {
                $('html').click(function () {
                    $.fn.tooltipster('hide');
                });
            }
        });
    }
4

3 回答 3

3

您可以像这样使用 Tooltipster 的 show 方法:

$('.tooltip').tooltipster().focus(function() {
    $(this).tooltipster('show');
});

演示

http://iamceege.github.io/tooltipster/#advanced

于 2015-02-23T22:23:18.390 回答
0
 $('.tooltip').tooltipster({
            theme: '.tooltipster-shadow',
            trigger: 'custom',
            maxWidth: 220,
            interactive: true,
            functionReady: function () {
                $('html').click(function () {
                    $.fn.tooltipster('hide');
                });
            }.on( 'focus, hover', function() {
               $( this ).tooltipster( 'show' );
            }).on( 'focusout, mouseout', function() {
               $( this ).tooltipster( 'hide' );
            })
        });
于 2015-02-23T22:22:31.243 回答
0

我认为您正在寻找:

$('.tooltip_hover_n_click').tooltipster({
  delay: 100,
  trigger: 'custom' // disable all by default
}).mouseover(function(){ // show on hover
  $(this).tooltipster('show');
}).blur(function(){ // on click it'll focuses, and will hide only on blur
  $(this).tooltipster('hide');
}).mouseout(function(){ // if user doesnt click, will hide on mouseout
  if(document.activeElement !== this){
    $(this).tooltipster('hide');
  }
});
于 2019-01-29T09:25:08.973 回答