Is there standard code I can use to rotate pictures in my HTML website?
|
|
CSS3 has a
This should work in the latest versions of most browsers (Firefox 5, Chrome 13, IE9, etc). However, older browsers will have issues. Some older browsers require vendor prefixes, so you'd need Older versions of IE didn't support the For a 45 degree rotation, you'd use the following code:
You'll note that IE6 and IE7 require the Rather than explain it here, I'll point you to a page where it is explained in detail: http://www.useragentman.com/blog/2010/03/09/cross-browser-css-transforms-even-in-ie/ One final note of caution on the If you want to do it via Javascript, I'd recommend using a JQuery plug in. This will remove the complexity of having to write separate code for all the different browsers. See here for more info: http://plugins.jquery.com/plugin-tags/rotate Hope that helps. |
|||||||
|
|
You rotate images either on the client-side (within the browser) or server-side (in your server and then re-send the image to the browser). To rotate on the browser, see Spudley's answer. The common way on the server is to use imagemagick Most all web languages/frameworks include bindings to enable easy use of image magick. Eg here's the PHP version. A list for many different languages. You can use Ajax techniques to rotate the image for the user without requiring a page refresh. |
|||
|
|
|
I believe the only support for rotating HTML elements is provided by CSS transforms. They were invented by the WebKit team (I think): There is now support in other browsers too: |
||||