hello, the easy slider full width : choosing LEFT FRAMED text sliding here, the subtext slides from the right. very nice.
the slider full width can also do this?
Hey jelle,
The reason you’re not getting the slide animation on captions is because the fade animation has been selected for slide transition, you can override that with this custom CSS (slide animation will always be used):
.avia_transform .av_slideshow_full .active-slide .avia-caption-content,
.avia_transform .av_fullscreen .active-slide .avia-caption-content
{
visibility: visible;
-webkit-animation: caption-right 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1) !important;
animation: caption-right 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1) !important;
}
.avia_transform .av_slideshow_full .active-slide .avia-caption-title,
.avia_transform .av_fullscreen .active-slide .avia-caption-title
{
visibility: visible;
-webkit-animation: caption-left 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1) !important;
animation: caption-left 1s 1 cubic-bezier(0.985, 0.005, 0.265, 1) !important;
}
Best regards,
Josue