2012-02-24 2 views
0

은 다음과 같습니다jquery 캐로 셀 전환 속도를 대화식으로 줄이거 나 중지하려면 어떻게합니까? 한 번에 7 개 이미지를 보여줍니다 상단 슬라이더에 대한 링크 <a href="http://www.getushopping.com/" rel="nofollow noreferrer">http://www.getushopping.com/</a> 코드에서

<script type="text/javascript"> 
    $(document).ready(function() { 
     $('#mycarousel').jcarousel({ 
      wrap: 'circular' 
      /*,size:9*/ 
      ,visible:7 
      ,auto:true  
     }); 
    });  
</script> 

나는 자바 스크립트 및 JQuery와 새로운 오전과 나는 많은 문제에 직면하고있다. 나는 전환 속도를 줄이고 싶다. 그리고 나는 또한 마우스 커서가 마우스 커서 위로 움직일 때 회전 장치를 멈추고 싶다.

+1

http://sorgalla.com/projects/jcarousel/#Configuration –

답변

0

추가 애니메이션 : 구성 옵션 :

$('#mycarousel').jcarousel({ 
     wrap: 'circular' 
     /*,size:9*/ 
     ,visible:7 
     ,auto:true, 
     animation: 2000 // in miliseconds  
    });