ScrollMonitor Parallax Test Page

Speed Only
root.add(speedyEl, 2);	
		
I go up!
root.add(upEl, -1.5);	
		
Props and Easing
root.add(customEl, {
  start: {
    scale: 1
  },
  end: {
    x: -480,
    y: 1980,
    rotate: 360,
    scale: 3
  },
  easing: {
    x: easingMethod
  }
});
		
I live outside the scroll container, but that doesn't matter.
root.add(outsideEl, {
  end: {
    opacity: 1
  },
  easing: {
    opacity: easing
  }
});