Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1010969

    Hello my dear friends,
    How can i start the column animation after 3 seconds of loading the page ? Or change column animation delay time.

    #1011068

    Hey koraytastan,

    Thank you for using Enfold.

    Which animation did you set it to? Please try this css code.

    .avia_transform .avia_start_delayed_animation {
        animation-delay: 3s;
    }

    Best regards,
    Ismael

    #1011188

    Column right to left animation. But not working your css code.

    Default css

    .avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
        animation: avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
        opacity: 1;

    with your css

    .avia_transform .avia_start_delayed_animation {
        animation-delay: 3s;
    }
    .avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
        animation: avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);
        opacity: 1;
    • This reply was modified 6 years, 2 months ago by koraytastan.
    #1011586

    Hi,

    Thanks for the update. You can use this css code.

    .avia_transform .avia_start_delayed_animation.right-to-left {
        -webkit-animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275);
        animation: avia-rtl 0.8s 1 3s cubic-bezier(0.175,0.885,0.320,1.275);
        opacity: 1;
    }
    

    Best regards,
    Ismael

    #1011899

    Not working. This code repeats the animation after 3 seconds.
    After page load by scroll, it must be wait x second. Then the animation should start.

    Best,

    #1012154

    Hi,

    Yeah, I did notice that. This should work.

    .avia_transform .av-animated-generic {
      opacity: 0;
    }
    
    .avia_transform .avia_start_delayed_animation.right-to-left {
      -webkit-animation: avia-rtl 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275) 3s forwards;
      animation: avia-rtl 0.8s 1 cubic-bezier(0.175, 0.885, 0.320, 1.275) 3s forwards;
    }

    Best regards,
    Ismael

    #1012953

    No animation with this code (:

    #1013447

    Hi,

    The same css code works on my installation. Where are you testing this? Please provide the link to the page with the columns.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.