スニペットを短くするために多くのことを試みましたが、何もうまくいきません。
ここにあります:
var logoTitle = $(".logoTitle");
logoTitle.children(".char3, .char4").delay(300).each(function() {
$(this).animate({
'margin-top':'0',
'opacity':'1'
}, 330, "easeOutQuart");
});
logoTitle.children(".char2, .char5").delay(600).each(function() {
$(this).animate({
'margin-top':'0',
'opacity':'1'
}, 330, "easeOutQuart");
});
logoTitle.children(".char1, .char6").delay(900).each(function() {
$(this).animate({
'margin-top':'0',
'opacity':'1'
}, 330, "easeOutQuart");
});
これを短くして効率を上げるにはどうすればよいですか?