Is there a way to render an image tilted in html or css or JavaScript or php or anything else.... ?? And i know this can be done by first making a tilted image in Photoshop and then rendering it on the screen..... i would like to know if there is some other way to do this... i heard this is possible in JavaScript.... is it true..? If it is true, i would like a little explanation on such JavaScript........
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
This plugin might help jquery rotate |
|||
|
|
|
For a purely browser-based way to do this, one approach would be to use CSS3 transforms which can be used to rotate and skew images. Another would be to render the image using SVG, which again supports rotation and skew. Third way to do it would be to draw it with JS on a canvas. These canvas and CSS3 approaches will work in modern browsers, at least in Opera 10, Firefox 4, Safari 4 and Chrome. SVG can be used in IE as well with assist from some libraries. |
|||
|