我已经尝试了很多来缩短我的片段,但没有什么对我有用。
这里是:
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");
});
我怎样才能缩短这个时间并提高效率?