I've seen a few JavaScript image rotators that use either the HTML5 canvas element or an AJAX call to a server-side script, but is it possible to do it without using those methods? Internet Explorer doesn't support canvas (I'm aware of excanvas, but I'd like to do without if possible) and I'm not sure if AJAX will be fluid enough. If there is a way, are there any open source scripts, examples, or resources that you could point me to?

link|improve this question

Same question: stackoverflow.com/questions/365532/… – Chuck Feb 26 '09 at 21:49
It's not quite the same. I'm specifically looking for a way to do it without canvas, whereas I think he just wants something that works. – VirtuosiMedia Feb 26 '09 at 22:00
feedback

3 Answers

up vote 4 down vote accepted

Alas, CSS does not support rotating images in any way, shape or form (unless you count CSS Transforms, which are only supported by Safari 4 and Firefox 3.1).

Your best bet is to use Raphael's image() and rotate(), which should support all semi-modern browsers (using SVG) and most versions of IE (using VML).

link|improve this answer
+1 for Raphael's script. I hadn't seen that before. – VirtuosiMedia Feb 26 '09 at 22:10
feedback

This jQuery plugin works in major browsers including IE: http://wilq32.googlepages.com/wilq32.rollimage222 . It makes use of excanvas, but at least it allows you to evaluate if that method is good enough for your purposes.

link|improve this answer
feedback

Google is your friend: http://www.walterzorn.com/rotate_img/rotate_img.htm

But the downside of this technique (as mentioned) is that it uses hacks by inserting a huge number of DIVS so it could slow down the browser a good bit. Use with caution. Problems like this are why the canvas tag was created in the first place.

link|improve this answer
Thanks. I had run across that script previously, but wasn't sure about the method or how it would stand up to photos, etc. – VirtuosiMedia Feb 26 '09 at 22:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.