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/

Was it helpful?

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top