Jump to content
Search Community

Daniel2024

Members
  • Posts

    21
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Daniel2024's Achievements

1

Reputation

  1. Thank you. const tweens = timeline.getChildren(); for(var i = 0; i < tweens.length; i++) { if(tweens[0].progress() === 1){ console.log('hit'); } } Here, i wanted to console log , after the the first tween of the timeline ends. What i am doing wrong?
  2. Hello, i created a timeline and want to access each tween individually. How can i do it? Furthermore i want to add a general function to the end of each tween. I used .add() after each tween, but is there another way to solve this? Thank you in advance. Regards Daniel
  3. Hello, which license is required, if am selling websites and want to use greensock within my projects? Regards Daniel
  4. Here is my gsap.min.js file: https://github.com/Daniel20ZA/project
  5. im getting these errors: [Warning] Invalid property – "opacity" – "set to" – 0 – "Missing plugin? gsap.registerPlugin()" (gsap.min.js, line 11) [Warning] Invalid property – "y" – "set to" – 35 – "Missing plugin? gsap.registerPlugin()" (gsap.min.js, line 11) [Warning] GSAP target null not found. https://greensock.com (gsap.min.js, line 11)
  6. I was running my project on localhost and I was using only greensock and scroll magic. Now im facing the problem that probably scrollMagic isn't working. I have made several animations but now on one page the animations cant be executed. "Maybe the problem is ScrollMagic. It hasn't been updated to work with v3." How can I solve this?
  7. The problem is solved. I putted the .map-file in the same folder as gsap.min.js!
  8. here are the files: https://github.com/Daniel20ZA/project
  9. it seems that the data is too big in my folder. Is there any other way to upload it?
  10. proFolder I don't have the gsap.min.js.map file. It wasn't in the folder of GreenSock.
  11. Hi Zach, no, I use vs-code. I downloaded gsap and embedded it locally. I also embedded: <script src="./js/gsap.min.js"></script> <script src="./js/scrollmagic/ScrollMagic.min.js"></script> <script src="./js/scrollmagic/animation.gsap.js"></script> <script src="./js/main.js"></script> in the same sequence like above.
  12. Hello guys, I have included gsap.min.js in a folder. After taking a look in the console, I noticed that I am getting the notification that the gsap.min.js.map file failed to load (404). I am confused about this error, because I just included gsap.min.js in my folder and not .map file. What is wrong here? Thank you in advance. Regards Daniel
  13. Hello guys, I am trying to animate a menu, with two different timelines (open and close). Everything works fine. There still one little issue I need to solve: After closing the menu and toggle the button to open the menu, the open-animation doesn't work / run. Here is my code: menuIcon.addEventListener('click', MenuAnimation); var menuState = 0; function MenuAnimation(){ if(menuState == 0 ){ menuState = 1; tl.play(); } else if(menuState == 1){ tl_remove.play(); menuState = 0; } } Thank you in advance. Regards Daniel
×
×
  • Create New...