Jump to content
GreenSock

brendynz

RoundProps Decimal

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

When tweening numbers is there a way to keep it to a certain number of decimal places? Such as in this case:

 

TweenLite.to( numberBeingTweened, 5, { targetNumber: 14.95 });

 

It's a dollar amount, so I need to keep the two numbers after the decimal.

 

(The title of this post is a bit misleading now that I think about it)

Link to comment
Share on other sites

Never mind. It was rounding it in another spot in the code... My bad

Link to comment
Share on other sites

Math.round(x * 100) / 100;

 

[edit] ... just saw your second post. So .... for anyone else that wants to know how to round a decimal in js :)

Link to comment
Share on other sites

You can also use a BITWISE operator to round like this:

var roundedNumber = numberYouAreRounding * 100 >> 0;

I use that in this simple animation to round the percentage value from a float to whole number.

 

See the Pen keEyq by jonathan (@jonathan) on CodePen

 

:)

  • Like 1
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×