2
我正在使用jQuery翻轉,當我懸停時我想停止翻轉,並在我停止時停止翻轉,如果我將它保留在它上面,請不要停止...在mouseout上翻轉停止
Soory for my english!我是法國人
$(document).ready(function(){
$('.sponsorFlip').hover(function(){
var elem = $(this);
elem.flip({
direction:'bt',
speed: 350,
onBefore: function(){
elem.html(elem.siblings('.sponsorData').html());
}
});
}, function() {$(this).revertFlip();});
});
我忘了說THKS – user1455814