1

我一直在对我正在开发的应用程序进行一些分析,而 qTip 真的减慢了它的速度!我喜欢这个插件,但是在准备好文档时添加提示需要将近 2 秒的时间(页面上大约有 300 个提示)。我知道有很多技巧,但是有没有明显或不那么明显的方法来加快速度?

我在这里使用 2.0 的每日版本:

http://github.com/craga89/qtip

我用来添加提示的主要功能是:

var thingsToTip = $('.TipMe');
for (var currentItem, i = -1; currentItem = thingsToTip[++i]; ) {
    currentItem = $(currentItem);
    currentItem.qtip({
        style: {
            widget: false,
            classes: 'ui-tooltip-light' 
        },
        content: currentItem.attr('tooltip'),
        position: {

            at: 'bottomRight',
            my: 'topleft',
            adjust: {
                screen: 'flip',
                x: 0,
                y: 0
            }
        }
    });
}

现在我知道按班级选择并不是最有效的。但我尝试将其切换为 span.TipMe,但它仅在 2069 年中节省了大约 10 毫秒,因此为了便于阅读,我将其取回。我已经将它从使用 .each 转换为传统的 for 循环。这为我节省了大约 100 毫秒。与总运行时间相比,这又是杯水车薪。

我一直在使用 dynaTrace 来追踪缓慢的部分。

整个函数需要 2069 才能运行。其中 1931 年是 qtip 功能。所以我对加速循环和选择器并不太感兴趣。他们很好。我需要减少花在实际 qtiping 上的时间。

希望很清楚我想要做什么。

我愿意尝试几乎任何东西,如果有更有效的工具提示插件,我愿意放弃 qTip!

4

2 回答 2

4

就像另一个人说的那样,只有在它们悬停或完成任何要求后才尝试附加它们。

$(".TipMe").live("mouseover", function () {
    var $this = $(this)
    if (!$this.data("toolTipAttached")) {
        $this.qtip({
            style: {
                widget: false,
                classes: 'ui-tooltip-light'
            },
            content: $this.attr('tooltip'),
            position: {

                at: 'bottomRight',
                my: 'topleft',
                adjust: {
                    screen: 'flip',
                    x: 0,
                    y: 0
                }
            }
        });

        $this.data("toolTipAttached", true);

        // the qtip handler for the event may not be called since we just added it, so you   
        // may have to trigger it manually the first time.
        $this.trigger("mouseover.qtip");
    }
});
于 2010-09-08T18:02:41.903 回答
1

我会说你只是一次添加太多。

您可以尝试一次加载一个,window.setTimeout();这样他们就不会挂断 UI?虽然我不确定这会奏效。

或者,仅当用户专注于该字段而不是预先加载它们时才应用 qTip ......这显然会杀死您的页面。

用户实际想要显示所有 300 个提示的可能性有多大?然而你正在加载它们......

其实,你为什么要循环?这不会做同样的事情吗?

    $('.TipMe').qtip({
        style: {
            widget: false,
            classes: 'ui-tooltip-light' 
        },
        content: this.attr('tooltip'),
        position: {

            at: 'bottomRight',
            my: 'topleft',
            adjust: {
                screen: 'flip',
                x: 0,
                y: 0
            }
        }
    });
于 2010-09-08T17:46:00.633 回答