Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 qTip2 在鼠标光标附近显示帮助消息。
position: { target: 'mouse' }
但是我不能点击任何东西,因为 qTip 总是在鼠标下方,它会阻止点击它下面的任何东西。我怎样才能将尖端从鼠标移开一些像素(所以它仍然跟随它)?
http://jsfiddle.net/7LDmA/3/
添加此代码做你的CSS
它将元素的位置降低 10 个像素:
#qtip-0 { margin-top: 10px; }
示例:http: //jsfiddle.net/hKHAk/
您可以让指针单击工具提示:
#qtip-0 { pointer-events: none; }