Question

I've got a problem with an animation from animate.css Every animation that enters from the right, extends my container. This happens only in chrome, and only with animations from right. Anyone knows a workaround?

Here's the problem in action: http://www.andibauer.at/wp-themes/arkane/

Était-ce utile?

La solution

You should do following, for example:

html:

<div class="container">
    <img src="../" class="animated bounceInRight" />
</div>

css:

.container {
   overflow: hidden;
}

The rule "overflow: hidden" to div with class "container" banishes the horizontal scroll for the animations from right.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top