is there a way to create an image slideshow that is rotated by say 5° ? I’d prefer a non-flash solution. Thank you!

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CSS3 has a
rotateproperty which you can set. In your stylesheet, it would look something like this:However, it’s quite new and it’s got fairly limited browser support at the moment, so it’s not ideal.
Some browsers support it using vendor prefixes, which means it’s experimental, but you could include them in your stylesheet anyway.
Microsoft Internet Explorer has a completely different mechanism for rotation.
Your final stylesheet might look something like this:
(You’ll need to work out the angles yourself for IE! the one I’ve provided should be okay for 45 degrees)
However, even then you can’t be certain that the user’s browser will support it, and there may be other quirks you’d need to deal with.
Also, of course, a rotated element will be degraded in quality due to pixellisation on screen. How badly will depend on the quality of the browser’s rotation algorithms, but there will always be some loss of quality.
In short, rotation in a browser (for the time being at least) is more of a play-thing than a useful piece of functionality. But it can be done.