Search the Community
Showing results for tags 'image gsap'.
-
Hi everyone I have one question for you all reading, can you help me with that - So I made a website - https://walkwise.in/ In this website I'm using GSAP, Framer motion, and 4 image sequence, I'm doing on scroll Image sequence animation - Made using Nextjs Now - All the images are stored in cloudinary and whenever a user visits website all images are fetched from there, It takes some time to load, I have reduced this time to some extend but I want this sequences to loads lighting fast. Can you help me with this. Thanks
- 1 reply
-
- image sequnce
- gsap
-
(and 3 more)
Tagged with:
-
i think i have to do something similar like this(Looped "scrolling" section) or this this(the red panel animation) to achieve the background effect. i dont know how to implement though can you guys help? check out this video i am talking about this
- 1 reply
-
- scrolltriger
- text
- (and 14 more)
-
Moving from AS3 to JS - how can I recreate this functionality (as accomplished in AS3) with GSAP? (Button is an image). btn.addEventListener(MouseEvent.MOUSE_OVER, over); btn.addEventListener(MouseEvent.MOUSE_OUT, out); function over(e:MouseEvent):void { TweenLite.to(btn, 1, {alpha: 1}); } function out(e:MouseEvent):void { TweenLite.to(btn, 1, {alpha: .6}); } Thanks guys