Looking at the inclusion of some very subtle animations on the page (think clouds are floating slowly over the sky).
$('DIV#clouds').animate( { left: '100px' }, 30 *1000 );
I tried to implement this in jQuery, and it seems that jQuery cannot do less than 1px increments (like flash). The animation works, itβs just not smooth, it looks nervous every time the cloud moves even one pixel in a few milliseconds.
My assumption is that subpixel movements are not possible, I just ask you to hope that I'm wrong.
source share