我使用Flowplayer.org Tooltips,我希望它在4秒後消失。jQuery工具提示,隱藏後..時間
這是它的代碼,任何人都可以幫忙嗎?
$("#search").tooltip({ offset: [45, 170], effect: 'slide' });
謝謝:)
我使用Flowplayer.org Tooltips,我希望它在4秒後消失。jQuery工具提示,隱藏後..時間
這是它的代碼,任何人都可以幫忙嗎?
$("#search").tooltip({ offset: [45, 170], effect: 'slide' });
謝謝:)
編輯。 借用另一個堆棧溢出問題。 它在這裏工作:http://jsfiddle.net/mmRu2/
jQuery.fn.delay = function(time,func){
return this.each(function(){
setTimeout(func,time);
});
};
$('#search').delay(2000, function(){
$('#search').fadeOut('fast');
}
);
試試下面的回調...希望它會工作......但我會褪色不透明度0.8 ... u能改變休息...
onShow: function() {
this.getTrigger().fadeTo("slow", 0.8);
}
這些答案都不適用於我。賈馬爾接近了,但錯過了重要的部分。
工作代碼4秒後隱藏工具提示:
<script>
$("s.howTooltip").tooltip({
//start when the tooltip is shown
onShow: function() {
//store a reference to this
var self = this;
//start a timeout for 4seconds
setTimeout(function() {
//get a reference to the tooltip and hide it.
self.getTip().hide();
}, 4000)
}
})
</script>
getTip()突然從哪裏來? – bart 2017-10-20 21:46:26
哈哈,剛纔的搜索欄加載:) – Kyle 2010-06-11 07:41:58
編輯後淡出慢慢地,並把測試的鏈接給你。 – 2010-06-11 09:03:21