Closed seb-celinedesign closed 4 years ago
Hmm. It's already doing this with pause(0)
which is the same as progress(0).pause()
.
What about changing the immediateRender
options within gsap?
Hmm. It's already doing this with
pause(0)
which is the same asprogress(0).pause()
.What about changing the
immediateRender
options within gsap?
Interesting option. For me it implies other problems in my animations and i had to refactor it for making it really responsive, but maybe for someone else it could be fine. Thanks 4 ur help.
I can't tell whether this got resolved. If you have more troubles, just let me know and I'll try and work the kinks out. This library is still fresh.
Hi, i use ScrollScene with breakpoints and a gsap timeline with only "from" tweens :
My issue is on viewport width < 768px (mobile), where my
.anim
node gets it initial style from Gsap :where i do not want to : for me the breakpoint is supposed to remove the timeline and all it styles. From my tests, timeline with only 'to' animation are not concerned by this issue obviously.
The problem is that the timeline stay in "paused state" even if the breakpoints doesn't match. Should Scrollscene calls the
timeline.progress(0).pause()
method instead ? like in the ScrollMagic gsap plugin removeTween method ?Or do you have a better idea how to resolve this problem ?