Hi webmonfo
A solution could be adding each delay for each single item
starting from the top left it rename articles as
item-0 | item-1 | item-2 | item-3
item-4 | item-5 | item-6 | item-7
item-8 | item-9 | item-10 | item-11
so you can change the delay for each single item adding code to custom.css file
.enable-effect .ja-inview .ja-animate[data-delay="item-0"], .enable-effect .ja-inview .ja-animate.dl-item-0 {
animation-delay:1000ms!important;
}
.enable-effect .ja-inview .ja-animate[data-delay="item-1"], .enable-effect .ja-inview .ja-animate.dl-item-1 {
animation-delay:1100ms!important;
}
.enable-effect .ja-inview .ja-animate[data-delay="item2"], .enable-effect .ja-inview .ja-animate.dl-item-2 {
animation-delay:1200ms!important;
}
.enable-effect .ja-inview .ja-animate[data-delay="item-3"], .enable-effect .ja-inview .ja-animate.dl-item-3 {
animation-delay:1300ms!important;
}
and so on for all 28 items , this will give you more flexibility to animate rows , single items , or columns
Hope it helps