Hi!
I’m not entirely sure what you mean by that but the animation is done via css keyframes, same for desktop or mobile. You can find it in the css > shortcodes.css file.
/*pop up animation*/
@-webkit-keyframes avia_msonry_show {
0% { -webkit-transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1; }
100% { -webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}
@keyframes avia_msonry_show {
0% { transform:translateZ(300px) translateY(200px) rotateX(-70deg); opacity: 0.1; }
100% { transform:translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}
Cheers!
Ismael
Hi,
I have the same issue with a masonry element and it does seem to happen random, about every third time (latest IOS safari on iphone and ipad).
the above css sort of fix it but does not seem to work well when combined with a filter.