Animate.css问题:页面变得超大

Animate.css issue: The page becomes super large

我正在使用 animate.css 为一些元素设置动画,并使用 class fadeInRightfadeInLeft,在动画完成前一秒底部滚动条出现(仅几分之一秒)。

我已经使用该样式表一段时间了,这是第一次出现这种情况。 我试着用这个函数做点什么:

$(function(){
var width = window.innerWidth
$(body).css('max-width',width)});

但它没有解决任何问题。

您可以使用body { overflow-x:hidden;}

您还可以在包含动画的任何父元素上使用 {position:relative; overflow-x:hidden} 作为解决上述问题的方法。