1

刚刚将此插件添加到我的网站。我想要“qtips”,就像您将鼠标悬停在底部附近的大浏览器图标上时所拥有的一样。

我不知道他们用的是什么风格。我目前有这个,但结果不一样:

$('a[title]').qtip({
    'position': {
        my: 'bottom center',
        at: 'top center'
    },
    'style': {
        tip: true,
        classes: 'qtip-dark'
    }
});

有人知道他们在用什么吗?

4

1 回答 1

2

您想使用qtip-tipsy而不是qtip-dark.

$('a[title]').qtip({
    'position': {
        my: 'bottom center',
        at: 'top center'
    },
    'style': {
        tip: true,
        classes: 'qtip-tipsy'
    }
});
于 2013-04-07T00:35:34.553 回答