我有這樣的代碼,但它不工作:jQuery的切換兩大功能自動
$('.hover_shine').bind('mouseover', function() {
$(this).css('background-position','10px 0');
});
$('.hover_shine').bind('mouseoutt', function() {
$(this).css('background-position','-380px 0');
});
setTimeout(function(){
$('.hover_shine').toggle($(this).trigger('mouseover'),$(this).trigger('mouseoutt'));
},500);
我想每500毫秒(鼠標懸停,mouseoutt)事件之間交換該元素
謝謝你提前 AGad
什麼是鼠標? tt是雙 –
嘗試http://jsfiddle.net/arunpjohny/hgANB/3/? –
這提供了相同的解決方案好,並且謝謝。 但切換的問題是什麼? –