I am currently implementing some animations on my iOS website, utilizing a basic fade in and fade out effect using jQ:
$('.loading').fadeOut();
Unluckily, the iPhone seems to struggle with these animations as they appear choppy. On the other hand, CSS3 animations are known for their smooth performance. Is there a way to fade out the div
using jQuery but opting for CSS3 animations instead of the jQ ones?