I would like to have multiple images rotate, or gyrate, or spin, whatever the term best describes the 2D image rotate, from the same document.
The jquery plugin that does this for one image is: http://code.google.com/p/jqueryrotate/wiki/Examples
Although the example page shows many instances of rotating images, these are loaded from iframes. Meaning, each rotating image is the portion of another document shown through iframe.
I am trying to rotate different images, at different speeds, and in different angles and it is not working.
For example, for two images I used code
var angle = 0;
setInterval(function(){
angle+=3;
jQuery(".process-1").rotate(angle);
},50);
setInterval(function(){
angle-=3;
jQuery(".process-2").rotate(angle);
},30);
Thank you