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.
单击几秒钟后是否有任何默认方法可以隐藏工具提示?我想在点击时显示它 2 秒然后关闭它。我该怎么做?
您需要在工具提示首次显示时设置超时。我还想补充hideOnClick: false一点,这样当他们点击其他地方时它就不会消失。
hideOnClick: false
这是一个完整的例子:
tippy('#button', { trigger: 'click', hideOnClick: false, onShow(instance) { setTimeout(() => { instance.hide(); }, 2000); } });