我正在使用jQuery翻转,我希望在我悬停时停止翻转,并在我鼠标移动时将其反转并停止它并且如果我保持我的mous,它也会停止...
我的英语Soory!我是法国人
$(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();});
});
答案 0 :(得分:0)
$('.sponsorFlip').mouseover(function(){
var elem = $(this);
elem.flip({
direction:'bt',
speed: 350,
onBefore: function(){
elem.html(elem.siblings('.sponsorData').html());
}
});
}).mouseout(function() {$(this).revertFlip();});