The animations that I am using on my site (which is developed for iOS) has a simple fade in and fade out using jQ:
$( .loading ).fadeOut();
The iPhone, however, is choppy while running these animations. CSS3 animations work much smoother however. How can I fade out the div
using jQuery but using CSS3 animations instead of the jQ ones?