Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to change the -webkit-transform: rotate() property using Javascript dynamically. But the commonly used setAttribute is not working:

img.setAttribute('-webkit-transform', 'rotate(60deg)');

The .style is not working either..

How can I set this dynamically in Javascript? I know some of you have experience dealing with this before.

-

Thanks to all the guys that helped me out!

share|improve this question

3 Answers

up vote 65 down vote accepted

The JavaScript style names are WebkitTransformOrigin and WebkitTransform

element.style.webkitTransform = "rotate(-2deg)";

Check the dom extension reference for Webkit here.

share|improve this answer
Thanks for the help! – American Yak Jan 16 '11 at 3:34
By the way, after searching far and wide, I found this: developer.apple.com/library/safari/#documentation/… and insideria.com/2010/12/… – American Yak Jan 16 '11 at 4:30
If you want more then one, seperate with a space For example: element.style.webkitTransform = "rotate(-2deg) translateX(100px)"; – Marc Nov 9 '12 at 10:25
This works fine on Safari and Chrome, but won't work on Firefox. What is the equivalent way of doing this for Firefox? – rsanchezsaez Jan 13 at 20:58
1  
MozTransform should be your friend. – haagmm Jan 16 at 3:53

Try using

img.style.webkitTransform = "rotate(60deg)"
share|improve this answer

Here are the js notations for most common vendors:

webkitProperty
MozProperty
msProperty
OProperty
property

I reset inline transform styles like:

myself.style.webkitTransform = "";
myself.style.MozTransform = "";
myself.style.msTransform = "";
myself.style.OTransform = "";
myself.style.transform = "";

and like this using jQuery:

$(myself).css({
    "webkitTransform":"",
    "MozTransform":"",
    "msTransform":"",
    "OTransform":"",
    "transform":""
});

http://www.developerdrive.com/2012/03/coding-vendor-prefixes-with-javascript/

share|improve this answer
cheers mate! thanks – Karl Morrison May 22 at 0:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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