Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1348528

    Hi –

    How can I remove/change the animation on the hero button in my site?

    The buy now button flies in from the left and I would prefer if it was static or faded in.

    Thanks!
    Shari

    #1348532

    because you only have one slide in that slider –
    1) the simple way would be to setup under the alb itself on advanced tab the slider-animation – Slideshow Transition to fade. Because the animation of the caption is correlated to the slide animation –
    then there will be no animation: caption-left – it is then changed to : caption-top

    ________

    If there were multiple slides – and you like to preserve the slide animation on the slides – you can set a different animation for it:

    /*** for fullwidth sliders - That is your case***/
    .avia_transform .av_slideshow_full .active-slide .avia-caption-title,
    .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button {
     -webkit-animation: avia-fadein 1.5s 1 ease-out !important;
     animation: avia-fadein 1.5s 1 ease-out !important;
    }
    
    /*** for fullscreen sliders ***/
    .avia_transform .av_fullscreen .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen .active-slide .avia-slideshow-button {
     -webkit-animation: avia-fadein 1.5s 1 ease-out !important;
     animation: avia-fadein 1.5s 1 ease-out !important;
    }

    if you only want to change it for a specific slider – then a custom-class would be the way to go:
    ( f.e. caption-fader ):

    /*** for fullwidth sliders - That is your case***/
    .avia_transform .av_slideshow_full.caption-fader .active-slide .avia-caption-title,
    .avia_transform .av_slideshow_full.caption-fader .active-slide .avia-slideshow-button {
     -webkit-animation: avia-fadein 1.5s 1 ease-out !important;
     animation: avia-fadein 1.5s 1 ease-out !important;
    }
    
    /*** for fullscreen sliders ***/
    .avia_transform .av_fullscreen.caption-fader .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen.caption-fader .active-slide .avia-slideshow-button {
     -webkit-animation: avia-fadein 1.5s 1 ease-out !important;
     animation: avia-fadein 1.5s 1 ease-out !important;
    }

    ______________________________________________________________________________
    here is the alternative solution with that custom class.
    the caption-top animation is with a little movement of the captions:

    /*** for fullwidth sliders ***/
    .avia_transform .av_slideshow_full.caption-fader .active-slide .avia-caption-title,
    .avia_transform .av_slideshow_full.caption-fader .active-slide .avia-slideshow-button {
     -webkit-animation: caption-top 0.5s 1 ease-out !important;
     animation: caption-top 0.5s 1 ease-out !important;
    }
    
    /*** for fullscreen sliders ***/
    .avia_transform .av_fullscreen.caption-fader .active-slide .avia-caption-title,
    .avia_transform .av_fullscreen.caption-fader .active-slide .avia-slideshow-button {
     -webkit-animation: caption-top 0.5s 1 ease-out !important;
     animation: caption-top 0.5s 1 ease-out !important;
    }
    • This reply was modified 2 years, 8 months ago by Guenni007.
    #1348593

    Ugh, I don’t think that I realized that would affect the button – yes, definitely the simple way!! (as I’ve said many times, rookie mistake!) I did use that.

    Is there any way to not have any animation at all and just have the button appear with the image?

    Thanks so much!
    Shari

    #1348596

    you can try:

    /*** for fullwidth sliders ***/
    .avia_transform .av_slideshow_full .active-slide .avia-caption-title,
    .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button {
        -webkit-animation: unset !important;
        animation: unset !important;
        opacity: 1 !important;
        transition: none !important;
        visibility: visible !important;
    }

    if there is a custom-class on that alb – it will be as you can see above on av_slideshow_full

    #1348637

    Hi,
    Thank you for sharing Guenni007,
    sldeutsch did this solve your issue?

    Best regards,
    Mike

    #1349074

    Fixed! Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Have hero button appear/fade in instead of fly in’ is closed to new replies.