• Resolved bochsler

    (@bochsler)


    After setting css animation to a textbox, the text or object will desappear from screen. And it’s still missing after switching off again the animation – Very Strange.

    Thx for any help!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Contributor Max Bond

    (@max-bond)

    Hi!
    Without code example I can say nothing…

    Thread Starter bochsler

    (@bochsler)

    I’ve prepared a page for you. Check this: https://carpi-auto-tuning.zaehner-metallbau.ch/produkte/

    I also recognized that the bug related to Rev. Slider. Without any slider animations works fine.

    .wpb_animate_when_almost_visible {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    This is what I see in the dev. tool…
    Hopefully that helps a bit.

    Plugin Contributor Max Bond

    (@max-bond)

    Well…
    I don’t understand how this problem is related to my plugin… You don’t have fixed widgets on that page ??
    Q2W3 Fixed Widget plugin is disabled there.

    Nevertheless I can can see one problem with your effects logic:
    you have set opacity: 0 – that property prevents block from being displayed. Ok, but where is the instruction to display hidden block when it is active?
    It should be somthing like this:

    .active .wpb_animate_when_almost_visible {
        opacity: 1;
        filter: alpha(opacity=1);
    }
    Thread Starter bochsler

    (@bochsler)

    Actually it should be activated, otherwise you had a redirect to somewhere else. I’ve followed your steps from the tutorials on youtube. You Can go forward to section 3 of this page: https://carpi-auto-tuning.zaehner-metallbau.ch/produkte/#section3

    Normally the element gets animated when it enters the browsers viewport – this are settings of WBbakery I don’t have to change any parameters. Did you never had problems with animations?

    Plugin Contributor Max Bond

    (@max-bond)

    I see animation sometimes, sometimes not…
    Looks like wpb_start_animation class assigned randomly.

    But… I wonder how it is related to Q2W3 Fixed Widget? )

    Thread Starter bochsler

    (@bochsler)

    You’re right sorry its my fault. Of course it has nothing to do with your plugin

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Plugin not working with css animations’ is closed to new replies.