문제

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/

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top