$('#home').click(doWork);
function doWork() {
var index = 0;
var boxes = $('.box1, .box2, .box3, .box4, .box5, .box6');
function start() {
boxes.eq(index).addClass('animated');
++index;
setTimeout(start, 80);
};
start();
}
リンクをクリックすると、このアニメーションが始まります。アニメーションを終了した後、別のリンクをクリックした後、このアニメーションを逆にする必要があります。