Viewing 4 posts - 1 through 4 (of 4 total)
-
AuthorPosts
-
July 2, 2020 at 4:49 am #1227371
On the full width slider the text slides in – but can we have it slide out after 5 secs as well?
July 5, 2020 at 8:20 pm #1228074Hey navindesigns,
Sorry for the late reply and thanks for the link, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.avia_transform #top.home .av_slideshow_full .active-slide .avia-caption-title, .avia_transform .av_fullscreen .active-slide .avia-caption-title { visibility: visible; animation: caption-left 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important; -webkit-animation: caption-left 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important; animation-fill-mode: forwards !important; } .avia_transform #top.home .av_slideshow_full .active-slide .avia-caption-content, .avia_transform .av_fullscreen .active-slide .avia-caption-content { visibility: visible; animation: caption-right 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important; -webkit-animation: caption-right 6s 1 cubic-bezier(0.985,0.005,0.265,1) !important; animation-fill-mode: forwards !important; } @keyframes caption-left { 0% { transform: translate(-2000px,0); opacity: 0; } 20% { transform: translate(0,0); opacity: 1; } 80% { transform: translate(0,0); opacity: 1; } 100% { transform: translate(-2000px,0); opacity: 0; } } @-webkit-keyframes caption-left { 0% { transform: translate(-2000px,0); opacity: 0; } 20% { transform: translate(0,0); opacity: 1; } 80% { transform: translate(0,0); opacity: 1; } 100% { transform: translate(-2000px,0); opacity: 0; } } @keyframes caption-right { 0% { transform: translate(2000px,0); opacity: 0; } 20% { transform: translate(0,0); opacity: 1; } 80% { transform: translate(0,0); opacity: 1; } 100% { transform: translate(2000px,0); opacity: 0; } } @-webkit-keyframes caption-right { 0% { transform: translate(2000px,0); opacity: 0; } 20% { transform: translate(0,0); opacity: 1; } 80% { transform: translate(0,0); opacity: 1; } 100% { transform: translate(2000px,0); opacity: 0; } }
After applying the css, Please clear your browser cache and check.
Best regards,
MikeJuly 6, 2020 at 4:55 pm #1228326unfortunately, that did not work
nothing changed
July 8, 2020 at 1:38 pm #1228862 -
AuthorPosts
Viewing 4 posts - 1 through 4 (of 4 total)
- You must be logged in to reply to this topic.