我正在使用这个称为Tooltipster(https://iamceege.github.io/tooltipster/#options)的jQuery插件。是否可以打开左侧的内容和箭头?我一直在阅读他们的文档,但似乎无法正常工作。任何帮助深表感谢!这是我的代码:

的HTML

<span class="tooltip" title="Test Content Here">
     <i class="fa fa-plus-circle" aria-hidden="true"></i>
</span>


JS

$('.tooltip').tooltipster({
     theme: 'tooltipster-shadow',
     trigger: 'click',
     position: 'bottom'
});


我得到以下输出:

jquery - 工具提示箭头打开,内容在左侧-LMLPHP

但是我真的很想得到这个输出:

jquery - 工具提示箭头打开,内容在左侧-LMLPHP

非常感谢!

最佳答案

我阅读了选项,我认为您可以移动工具提示。以这种方式修改您的代码:

$('.tooltip').tooltipster({
     theme: 'tooltipster-shadow',
     trigger: 'click',
     position: 'bottom',
     side:'left'
});


我认为这很麻烦。

关于jquery - 工具提示箭头打开,内容在左侧,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56005904/

10-13 01:54