Share Posted September 17, 2013 Tested on Window and Mac, I have the same issue for Firefox, the margin & padding isn't animated. http://jsbin.com/UGOSEGO/16/edit?html,output Link to comment Share on other sites More sharing options...
Share Posted September 17, 2013 hello welcome to the forums, try writing the css properties in camelCase ... so margin-left becomes marginLeft TweenLite.to($title,.5,{ css:{ "marginLeft": "20px" } }); // or like this TweenLite.to($title,.5,{ css:{ marginLeft: 20 } }); even though i didnt include px ,, it is the default so 20 is the same as "20px" http://jsbin.com/ePOTAFi/1/edit?html,output Link to comment Share on other sites More sharing options...
Share Posted September 17, 2013 Yep, jonathan beat me to it As he said, you're using the wrong syntax, that's all. In JavaScript, css property names are always camel-cased, but you were using the css-based one with a dash. BAD: {"margin-left":"20px"} GOOD: {marginLeft:"20px"} ALSO GOOD: {marginLeft:20} Link to comment Share on other sites More sharing options...
Author Share Posted September 17, 2013 Thank you guys Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now