2011-07-07 52 views
0
<script> 
    $(document).ready(function() { 
      var speed = 600; 

      $('#navPrev').click(function() { 
       $('#carouselul').animate({ marginLeft: '-280px' }, speed); 
      }); 

      $('#navNext').click(function() { 
       $('#carousel ul').animate({ marginLeft: '1px' }, speed); 
      }); 
     }); 

    $('#carousel ul').toggle(
     function() { 
      $('#drop').hide('drop', { direction: 'right' }, 1000); 
     }, 
     function() { 
      $('#drop').show('drop', { direction: 'down' }, 500); 
     } 
    ); 
</script> 

<style type="text/css"> 
    #container {height:100px; width:500px; font-family:Tahoma;} 
    #carousel { height:100px; width:500px; border:1px solid #000; 
    overflow:hidden;} 
    #carousel ul { list-style-type:none;margin-top:4px; width:2000px; margin- 
    left:0; left:0; padding-left:1px;} 
    #carousel li { display:inline;} 
    #carousel ul li img{ width:90px; height:90px; border:1px solid #ccc; 
     float:left; } 
    #navPrev {float:left;} 
    #navNext {float:right;} 
</style> 

希望它現在已經完成。滾動圖片一遍又一遍,無需點擊下一個或上一個按鈕

+0

是不是您的代碼不完整? –

回答

1

這可能幫助:

var animate = function() { 
    var speed = 600; 

    animate.toggle = !animate.toggle; 

    $('#carousel ul').animate({ 
     marginLeft: (animate.toggle ? '-280px' : '1px') 
    }, speed, delayAnimate); 
}; 


var delayAnimate = function() { 
    var delay = 500; 
    setTimeout(animate, delay); 
}; 

你最好永遠緩存你的DOM查詢結果,因爲查詢是非常昂貴的。 像這樣:

var carusel = $('#carousel ul'); 

var animate = function() { 
    // ... 
    carousel.animate() 
} 
+0

我試過並仍然沒有工作,我想在動畫功能中添加什麼。 –

+1

什麼不工作?你使用調試器(例如Firebug)嗎?在jsfiddle.net上創建一個完整的測試用例,以便我們可以爲您提供幫助。 – katspaugh

相關問題