Slide and fade-in animations are not working on iPhone (Safari / iOS 14.2).
It is fine for me to disable animations for mobile devices, but this code I found, also does not work:
if( $animationEl.length < 1 ){
return true;
}
if( $(‘body’).hasClass(‘device-xs’) || $(‘body’).hasClass(‘device-sm’) || $(‘body’).hasClass(‘device-md’) ) {
$animationEl.addClass(‘animated’);
return true;
}