在mouseout上翻转停止

时间:2012-06-14 09:42:16

标签: jquery hover flip mouseout

我正在使用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();});

});

1 个答案:

答案 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();});