As I am using webpack, the modules should be the correct import but it behaves terrible. Is seems it is unable to update when scrolling. It is jumpy and choppy. The animation is super simple.
```
gsap.utils.toArray(".parallax").forEach(layer => {
const tl = gsap.timeline({
scrollTrigger: {
trigger: layer,
start: "top top",
end: "bottom top",
scrub: true,
markers: false
}
});
const depth = layer.dataset.depth;
const movement = -(layer.offsetHeight * depth)
tl.to($(layer).find('.imageWrapper'), {y: movement, ease: "none"}, 0)
});
```