2010-06-07 3 views

답변

3

이 같은 것을 수행 할 extend 기능을 사용할 수 있습니다 :

$('.images').galleria({ 
    autoplay: true, 
    extend: function() { 
     var gallery = this; 
     this.$('stage').hover(function() { 
      gallery.pause(); 
     }, function() { 
      gallery.play(); 
     }); 
    } 
}); 
관련 문제