Jump to content
Search Community

Inserting a comma in an animated value

Phill test
Moderator Tag

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

Hello

 

I'm using the following to count from 0 to 16000:

			function animValueThree() {
				TweenMax.to(countVal3, 5, {delay: 1.75, countThree:"+=10", roundProps:"countThree", onUpdate: updateThree, ease: easeInOut});
			};

			function updateThree() {
				$valueThree.html(countVal3.countThree);
			};

This works great, however, I was hoping I'd be able to use a comma so that the value was visually represented like this:

 

16,000

 

But so that it'd always be used like that for smaller values (1,000). Is there a way to do this?

 

Thanks

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.
×
×
  • Create New...