Здравствуйте!
У меня есть 4 функции, они выполняются одновременно, но мне нужно сделать так чтоб они выполнялись поочерёдно.
Подскажите пожалуйста как это мне сделать, а то я всё время чё-то на этом спотыкаюсь.
Вот функции:
function one_img(){
$('#img_1').fadeOut(2000, function(){
$(this).attr('width', 100).attr('height', 62).show(1500, function(){
$(this).effect('pulsate', 1500, function(){
$(this).attr('width', 199).attr('height', 125);
})
})
});
}
function two_img(){
$('#img_2').fadeOut(2000, function(){
$(this).attr('width', 100).attr('height', 62).show(1500, function(){
$(this).effect('pulsate', 1500, function(){
$(this).attr('width', 199).attr('height', 125);
})
})
});
}
function three_img(){
$('#img_3').fadeOut(2000, function(){
$(this).attr('width', 100).attr('height', 62).show(1500, function(){
$(this).effect('pulsate', 1500, function(){
$(this).attr('width', 199).attr('height', 125);
})
})
});
}
function for_img(){
$('#img_4').fadeOut(2000, function(){
$(this).attr('width', 100).attr('height', 62).show(1500, function(){
$(this).effect('pulsate', 1500, function(){
$(this).attr('width', 199).attr('height', 125);
})
})
});
}
one_img();
two_img();
three_img();
for_img();
Заранее большое спасибо!