Share Posted April 18, 2016 I am using the following code TweenMax.to(this,2,{height:100, width:200}); This animates the DIV represented by THIS to 100px and 200pxThis works when the initial values are set in PX and when they are set in %How do i animated to a % based width and height TweenMax.to(this,2,{height:100%, width:200%}); does not work 1 Link to comment Share on other sites More sharing options...
Share Posted April 18, 2016 You can use a string to pass in percentages to Tweenmax: TweenMax.to(this, 2, {height:"100%", width:"200%"}) 3 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