打开后,工具提示器自动关闭

时间:2017-04-20 09:32:40

标签: tooltipster

我使用工具提示器进行标注。我需要一个用户点击的解决方案,呼叫打开但随后在一定时间后自动关闭

我的代码:

$('.mgu-ekl-info').tooltipster({
            functionBefore: function(instance, helper){
                $.each($.tooltipster.instances(), function(i, instance){
                    instance.close();
                  });
            },
            functionReady: function(instance, helper){
                setTimeout(function(){
                    $(this).instance.close();               
                }, 3000);
            },
            contentCloning: true,
            trigger: 'click',
            'maxWidth': 280,
            'minHeight': 280,
            animation: 'grow',
            interactive: true,
            arrow: false,
            distance: -10,
            contentAsHTML: true,
            theme: 'tooltipster-shadow'
        });

感谢您的帮助。 托马斯

0 个答案:

没有答案