Я хочу, чтобы .title
включился, затем .element
включился, а затем .list
.Но я не могу понять, как это сделать.Они всегда включаются одновременно.
setTimeout(function() {
$("#screen" + screenNum).show();
$("#screen" + screenNum + " .title").each(function(index) {
$(this).css("display", "block");
TweenLite.from($(this), animationSpeed, {
x: -1000,
ease: Cubic.easeOut,
delay: index * 0.1
});
});
$("#screen" + screenNum + " .element").each(function(index) {
$(this).css("display", "block");
TweenLite.from($(this), animationSpeed, {
y: 1080,
ease: Cubic.easeOut,
delay: index * 0.1
});
});
$("#screen" + screenNum + " .list").each(function(index) {
$(this).css("display", "block");
TweenLite.from($(this), animationSpeed, {
y: -500,
ease: Cubic.easeOut,
delay: index * 0.1
});
});
}, numEle * 100);