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.
有什么方法可以在加载时自动显示Tipsy工具提示并在 10 秒后关闭它?
<img class="west" title="Click here to upload a photo" src="/images/nophoto.jpg" alt="" />
$('.west').tipsy({ gravity: 'w', html: true, live: true });
$(function() { $('.west').tipsy('show'); setTimeout(function() { $('.west').tipsy('hide'); }, 10000); });