Skip to main content

normalize

Maps a value within a provided range to the corresponding position in the range between 0 and 1. It's the same as mapRange(), but with a hard-coded outMin/outMax of 0/1.


Choose one of the following method signatures - either get a normalized value immediately or omit the valueToNormalize parameter to get a reusable function that remembers the initial range so that you can feed in values to normalize accordingly later as many times as you want:

1) normalize(minimum, maximum, valueToNormalize)

  1. minimum : Number - The lower bound of the initial range to map from
  2. maximum : Number - The upper bound of the initial range to map from
  3. valueToNormalize : Number - The value that should be normalized.

Returns: the normalized number

Example

// in the -10 to 10 range, normalize the number 0 (map it to the corresponding position between 0 and 1)
gsap.utils.normalize(-10, 10, 0); // 0.5

// in the 0 to 100 range, map the number 25
gsap.utils.normalize(0, 100, 25); // 0.25

2) normalize(minimum, maximum)

  1. minimum : Number - The lower bound of the initial range to map from
  2. maximum : Number - The upper bound of the initial range to map from

Returns: a reusable function that accepts 1 parameter - a value to normalize

If you omit the valueToNormalize (3rd) parameter, the utility method will return a reusable function that's ready to normalize any value according to the range provided initially. In other words, the returned function remembers the range so that it can very quickly and efficiently do the normalizing later as many times as you want.

Example

// get a function that will always normalize for a range between 0 and 100
var clamper = gsap.utils.normalize(0, 100); // notice we didn't provide a valueToNormalize

// now we can reuse the function to normalize any values:
console.log(clamper(50)); // 0.5
console.log(clamper(10)); // 0.1
console.log(clamper(75)); // 0.75

Tip: combine reusable functions for powerful data transformations!

You can pipe() several reusable functions together to perform multiple tasks on an incoming value, like clamping, mapping to another range, snapping, interpolating, and more. For example:

// get a clamping function that will always clamp to a range between 0 and 100
var transformer = gsap.utils.pipe(
// clamp between 0 and 100
gsap.utils.clamp(0, 100),

// then map to the corresponding position on the width of the screen
gsap.utils.mapRange(0, 100, 0, window.innerWidth),

// then snap to the closest increment of 20
gsap.utils.snap(20)
);

// now we feed one value in and it gets run through ALL those transformations!:
transformer(25.874);

Video demo: combining utility methods