スライダーを7秒ごとにスライドさせようとしています。書き直すのではなく、このコードを変更するか、少し追加するだけでこれを行う方法はありますか?
$('#buttons a').click(function(){
var integer = $(this).attr('rel');
$('#promotional-slide .cover').animate({left:-640*(parseInt(integer)-1)}) /*----- Width of div promo-section (here 160) ------ */
$('#buttons a').each(function(){
$(this).removeClass('active');
if($(this).hasClass('button'+integer)){
$(this).addClass('active')}
});
});
$('.scroll-right').click(function(){
$('#promotional-slide .cover').animate({left:-640})
});
$('.scroll-left').click(function(){
$('#promotional-slide .cover').animate({left:640})
});
$('.regions ul li a').click(function(){
$(this).next().toggle();
return false;
});
});