2

I am using qTip2 to show a help message near the mouse cursor.

 position: {
   target: 'mouse'
 }

But I cannot click on anything because qTip is always under the mouse, it prevents from clicking anything under it. How can I move the tip some pixels aside from mouse (so it still follows it)?

http://jsfiddle.net/7LDmA/3/

4

2 に答える 2

1

このコードを追加してCSSを実行します

要素を 10 ピクセル下に配置します。

#qtip-0 {
    margin-top: 10px;
}

例: http://jsfiddle.net/hKHAk/

于 2013-09-07T06:11:48.750 に答える
0

ポインタでツールチップをクリックすることができます:

#qtip-0 {
    pointer-events: none;
}
于 2015-02-13T17:34:22.643 に答える