Tagged: full screen slider
Any way to have the captions, title, & buttons on the full-screen slider animate on only the first slide? I want to be able to change the captions in subsequent slides but not have anything move after the initial slide. I can code it to stop the animations altogether but I’d like them to move only on the first slide. Thanks.
Hey timo,
Could you provide us with a link to the site in question so that we can take a closer look please?
Thanks,
Rikard
Hi Rikard-
I came up with this CSS solution:
.avia_transform .av_fullscreen li.slide-x .avia-caption-content, .avia_transform .av_fullscreen li.slide-x .avia-caption-title, .avia_transform li.slide-x .avia-slideshow-button {
animation: none !important;
-webkit-animation: none !important;
visibility: visible !important;
}
where x is the slide(s) that you don’t want animated. There may be a more elegant solution, however.
T