<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>
希望它現在已經完成。滾動圖片一遍又一遍,無需點擊下一個或上一個按鈕
是不是您的代碼不完整? –