Skip to main content

cascading fade out animation

12th October, 2022

Updated: 12th October, 2022

    $('.team_stateTwo').css({ opacity: 0 });
         var delay = 50;
         setTimeout(function() { $('.teamProfile').each(function(i) {
              var blank = $(this).find('.team_stateOne');
              var pio = $(this).find('.team_stateTwo');
              $(pio).delay(i * delay).animate({opacity: 100}, 1);
              $(pio).delay(i * delay).animate({opacity: 0}, 1);
         });}, 10);

    624ad6a0-8e11-4b24-b9e1-daf5f2f6f9d8

    Created on: 12th October, 2022

    Last updated: 12th October, 2022

    Tagged With: