var index = 0,
len = imgs.length;
$('.btn').click(function(){
if($(this).data('control') === 'preve'){
if(--index < 0) index = len-1
$('#img').attr('src',imgs[index])
}else{
if (++index > len-1) index = 0
$('#img').attr('src',imgs[index])
}
})
len = imgs.length;
$('.btn').click(function(){
if($(this).data('control') === 'preve'){
if(--index < 0) index = len-1
$('#img').attr('src',imgs[index])
}else{
if (++index > len-1) index = 0
$('#img').attr('src',imgs[index])
}
})
2017-08-02