How can I remove the fade animation of icons loading?
I have a feeling it is an all or nothing thing. I have a page with a large table and icons and it looks silly to have the fade animation for the icons in the table as the table content appears and then slowly the icons appear.
Is there a way to remove that animation at the post/page level with some JS in the post/page or is it an all or nothing thing to disable in the functions.php?
Or maybe I could set the animation to instant with a 0 delay…where is that set?
I guess this affects the galleries as well…right? I rather have all loaded and no fading animation than slowly loading 200 thumbnails at 10 per second
Hi Monsoon!
Thank you for using the theme.
Please add this on Quick CSS or custom.css:
.avia_transform .av_font_icon, .avia_transform .avia_start_delayed_animation.av_font_icon {
opacity: 1 !important;
-moz-transform: scale(1 !important);
-webkit-transform: scale(1) !important;
-ms-transform: scale(1) !important;
transform: scale(1) !important;
-webkit-animation: none;
-moz-animation: none;
-msanimation: none;
animation: none;
}
Regards,
Ismael
Thanks :)
And also thanks for working on the weekend