While using animate.css to add animations to some elements, I noticed that when applying the classes fadeInRight
and fadeInLeft
, a strange issue occurs just before the animation finishes - the bottom scroll bar briefly appears.
This is something new for me as I have been using this stylesheet for quite some time without encountering such a problem. I attempted to address it by modifying the following function:
$(function(){
var width = window.innerWidth
$(body).css('max-width',width)});
However, unfortunately, this did not resolve the issue at hand.