Jump to content
Search Community

andelko21

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by andelko21

  1. I solved my issues. I have to use : <router-view v-slot="{ Component }"> <keep-alive> <component :is="Component" /> </keep-alive> </router-view> inside my root component and then when first time component is call onmounted hook I used function to init scrollTrigger, and with <keep-alive> i got two new hooks activated and deactivated where I could toggle between .enable() and .disable() ScrollTrigger instance. Without any problems. I still doesn't have conclusion why this happened in old version, here is picture of call stack and closure when .enable() is called, you can see that ref on my element "logo" is null but it should have value in due of hook mounted where I did call .enabled(). Ps. I think I get this This happened because in my old version after the componet being destroyed all reactive that was deleted to. So it was the reason of null reference at .enable() and why Gsap couldn't be able do trigger after changing routes, simply it had old ref for not existing element.
  2. Hello, Zach tnx for answers and solution. Yea I have been tried it to but i was concerned about performace. Does it effect the perfomance If every time I mount my component I have to reinit scrollltrigger ?
  3. Glad to help, I thought u wanted to achieved some another effect. ?
  4. You are using transition all in your css *
  5. Hello, I got some issues with gsap plugine ScrollTrigger, Here is some basic example what is problem in my codesandbox link. The main problem here is when I change my route to "About" and come back on "Home" Gsap ScrollTrigger do something unexpected. Codeandbox link https://codesandbox.io/s/sad-cray-cwjjk?file=/src/main.js Here is picture of .start and .end of negative value
×
×
  • Create New...