-
Posts
22 -
Joined
-
Last visited
Content Type
Profiles
Forums
Store
Blog
Product
Showcase
FAQ
ScrollTrigger Demos
Downloads
Everything posted by Abi Rana
-
It is best we discuss this in private so I’ve sent a message, please check.
-
Looking for go-to guy/gal for my small gsap projects
Abi Rana replied to IzzyCreamcheese's topic in Jobs & Freelance
Hi there, I've sent you a DM, please check. -
Hi Nick, I'm interested to work on this and I've sent you a DM, please check
-
Looking for someone to do a scroll animation for HTML
Abi Rana replied to HarrisonAireal's topic in Jobs & Freelance
Hi there, I've sent you an email please check and let me know if there is anything. Regards, Abi Rana -
I've tried my best to help out on the Webflow forum. This time I've made the example on Webflow itself (which is very similar to his implementation) and shared the project, so this should definitely help. If you want please check Webflow post reply here https://discourse.webflow.com/t/gsap-scrolltrigger-and-textplugin-combo-issue/214046/14
-
Looking for someone to implement ScrollTrigger
Abi Rana replied to Thepaulcollett's topic in Jobs & Freelance
But if that still doesn't fix your issue or if you need more help then let me know. You can dm in private and we can discuss ahead. By the way, I do need a little flexible time. -
Looking for someone to implement ScrollTrigger
Abi Rana replied to Thepaulcollett's topic in Jobs & Freelance
I think fixing the video would do the work for you. I've encoded the video and uploaded in my Google drive, get the video and upload on your site, this should fix the issue. https://drive.google.com/file/d/1dYjhZd8SWJvCE_cDu9Xk5s1nm6eMPaml/view?usp=sharing -
Looking for someone to implement ScrollTrigger
Abi Rana replied to Thepaulcollett's topic in Jobs & Freelance
Your main issue is with video encoding, please check that first. Above codePen has also mentioned it on its code block. The encoding is super important here to enable frame-by-frame scrubbing. You should try following: ffmpeg -i ~/Downloads/Toshiba\ video/original.mov -movflags faststart -vcodec libx264 -crf 23 -g 1 -pix_fmt yuv420p output.mp4 ffmpeg -i ~/Downloads/Toshiba\ video/original.mov -vf scale=960:-1 -movflags faststart -vcodec libx264 -crf 20 -g 1 -pix_fmt yuv420p output_960.mp4 You can test with above (codePen's) video to make sure that your code is working. By the way, I've tested on your site so code is working only the video should be fixed. -
This is just how your scrollTrigger has been setup. gsap.to(".shipping-section__vertical-container", { scrollTrigger: { trigger: ".shipping-section__globe-container", start: "top top", end: "400% top", markers: true, pin: true } }); You scrollTrigger ends when it reached at the top of the viewport. So for end value you should set it for "400% bottom" like below. Just change the end value only. gsap.to(".shipping-section__vertical-container", { scrollTrigger: { trigger: ".shipping-section__globe-container", start: "top top", end: "400% bottom", markers: true, pin: true } }); By the way, you do have one separate div in the HTML with some height, I guess that is intended
-
Need a Freelancer to help with ScrollTrigger animation
Abi Rana replied to Krystian's topic in Jobs & Freelance
Hi Krystian, just checked your requirements, I understand what you need and I'd love to work on this. By the way, I need one thing to be clear; you mentioned you only need animation incorporated. So do you have the page already developed and you just need the animation work? Or does this work include the whole page development, I mean design to HTML work? If there is anything else I'd love the opportunity to discuss, we can chat on DM or via email at info@abirana.com -
Hi Kyle, I've sent you an PM please check.
-
Hi there, I'm interested to work on this. But I've quite a tight schedule right now, so I won't be able to work on this in couple days. So I just wanted to inform you that if anyone else would work on this then great. But if someone could not manage then and if you would still be looking for it then do let me know. Regards, Abi Rana info@abirana.com
-
By the way, they are using symmetrical element on their solutions mentioned in the other thread. So they might not have faced this issue. So for asymmetrical element using -1 for scaleX value does the trick. So if someone needs flipping or spinning on Y axis they should definitely use this in place on rotateY or rotationY.
-
Really sorry for the late reply. And scaleX did work for me. At first I thought it wouldn't work because I had to flip the guy; so I thought that would not work. But then again I tried using -1 value and just worked like a charm. Thank you so much for the reply. Regards, Abi Rana
-
Hello guys, I was working on some animation for my client and I found the issue with rotateY which I'm unable to implement. Can you guys please check and let me know if there is any solution to this? I've checked few forum topics and did see the solution below shared by you guys. It suggests to use scaleX but element is not a symmetrical element so I need it actually be flipped and I don't think I can use it as a separate SVG as well. By the way storyline is as follow (store guy filling crate to a van): store guy goes near the van crate is left there (hide crate) store guy come back to the crate laying outside the store picks another crate repeat until there is no crate So can you guys please check and let me know if there is any solution to this? Thank you for checking in. Abi Rana
-
Looking for someone to upgrade some website pages
Abi Rana replied to mjames's topic in Jobs & Freelance
Hi Melissa, do you mean you only need help to implement the animation on your website? It would be great if you would elaborate the issue. Why don't you email me at info@abirana.com or on Skype abeeonline -
Hi there, an update if anyone visiting this topic. I just saw that MotionPathPlugin is a separate plugin in this new version, I just found it. In fact now you don't even need MorphSVGPlugin just only for MotionPathPlugin. Also GSAP is providing MotionPath helper, with that we can see the path and edit in real time. Check this out here https://greensock.com/docs/v3/Plugins/MotionPathPlugin Maybe this can be helpful if anyone is having such issue.
-
Has anyone encountered the issue, today I was work on a new project and I was using new updated GSAP and MorphSVGPlugin for this one. I had to do some motion along a path. So first this I wan creating variables like below: var motionPath_1 = MorphSVGPlugin.pathDataToBezier("#motionPath-1", {align:"#connecting-dot"}); But this is throwing an error as below: Uncaught TypeError: MorphSVGPlugin.pathDataToBezier is not a function This is the same thing I've been using and on the new update this has no change as I can think of. When using old GSAP and MorphSVGPlugin it is work fine. Has anyone encountered this? Does anyone know what is the issue?