gpt4 book ai didi

jquery - qTip2 - 工具提示的位置

转载 作者:太空宇宙 更新时间:2023-11-04 10:34:11 24 4
gpt4 key购买 nike

我不知道如何设置工具提示的正确位置。我的对象有带有 html 结构的工具提示,它们位于屏幕的边缘,所以我看不到它们中的大部分。我做了一个fiddle .只有 4 个带有工具提示的对象,但在我的元素中我有很多。

$('.qtip-show').qtip({
position: {
target: 'mouse',
},
});

最佳答案

您可以在此处查看选项: http://qtip2.com/options

在尝试了一段时间后,它起作用了。

$('.qtip-show').each(function() { // Grab all elements with a title attribute,and set "this"
$(this).qtip({ //
position: {
my: 'top left', // Position my top left...
at: 'bottom left', // at the bottom right of...
target: $(this) // my target
}
});
});

完整代码在这里: http://codepen.io/anon/pen/GZvomK

最好的,乔治

关于jquery - qTip2 - 工具提示的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36278993/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com