kimizito
kimizito

Reputation: 41

css3 animation - trouble understanding css property

There is a delay in my CSS animation. I would like the animation start without delay. Tried to change some values below but couldn't archieve the result.

.wpb_start_animation.wpb_appear {
animation: 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s normal none 1 running wpb_appear;
}

Page: www.globalig.com

Thanks.

Upvotes: 2

Views: 641

Answers (1)

Niet the Dark Absol
Niet the Dark Absol

Reputation: 324620

The animation is only being started by the jQuery. Therefore, until the jQuery has loaded, you won't see anything.

Try adding the .wpb_start_animation directly to your containers, instead of the .wpb_animate_when_almost_visible class.

Upvotes: 2

Related Questions