2012-06-14 4 views
2

jQuery 플립을 사용하고 있습니다. 마우스를 가져 가면 플립을 멈추고, 마우스 오버시 멈추고 멈추고 멈추게하십시오.마우스 아웃시 플립 스톱

Soory for my english! 나는 thks 말을 잊지

$(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
$('.sponsorFlip').mouseover(function(){ 
    var elem = $(this); 
    elem.flip({ 
     direction:'bt', 
     speed: 350, 
     onBefore: function(){ 
     elem.html(elem.siblings('.sponsorData').html()); 
     } 
    }); 

    }).mouseout(function() {$(this).revertFlip();}); 
+0

프랑스어 해요 – user1455814

관련 문제