Closed SimonFricker closed 9 years ago
The following code fixes this issue but its a far from perfect solution.
@-webkit-keyframes fadeInUpBig { 0% { -webkit-transform: translateY(500px); transform: translateY(500px); } }
Please, see the issue https://github.com/daneden/animate.css/issues/242.
This happens because translating an element causes it to interfere with the document overflow, basically making the page wider or taller when animating using any of the xInBig or xOutBig animations. The simplest fix would be to apply a width of 100% to the body or html, as well as a hidden overflow on the x-axis.
It seems that the right CSS animation classes are causing a double page width in Chrome for some reason.
Using animation class with Big at the end (such as fadeInUpBig) creates whitespace at bottom of homepage on Cashmere. Removing Right/Big animation classes fixes all issues in Chrome.