Hi, in my React project, I want to use the ScrollToPlugin
I am using Webpack/Babel environment:
This is what I try to do, but it doesn't have any effect on my element:
import { TweenLite, ScrollToPlugin } from 'gsap';
...
// this.list is my div element that have an overflow scroll
TweenLite.to(this.list, 1, { scrollTo: +this.list.scrollHeight });
I thought importing ScrollToPlugin will take it into account :(
Hi, in my React project, I want to use the ScrollToPlugin I am using Webpack/Babel environment: This is what I try to do, but it doesn't have any effect on my element:
I thought importing ScrollToPlugin will take it into account :(