Capítulo 347 de 411
Gets/Sets the scroll position of the associated scroller (numeric).
let st = ScrollTrigger.create({
trigger: ".class",
scroller: ".container", // if no scroller is defined, the viewport (window) is used.
start: "top center",
end: "+=500",
});
// get
let position = st.scroll();
// set
st.scroll(100);