PointC last won the day on
PointC had the most liked content!
-
Posts
3,315 -
Joined
-
Last visited
-
Days Won
307
PointC last won the day on
PointC had the most liked content!
About PointC

Contact Methods
- Website URL
Profile Information
-
Gender
Male
-
Location
Seattle area
-
Interests
web design, motion graphics, 3D animation, video production, all things sci-fi, Mt. Rainier hiking and my dachshunds
PointC's Achievements
-
I honed my speed skills back in the day before I was a Mod. I would try to answer faster than Carl, Jonathan, Blake, Diaco and Jack, but would usually lose those speed battles.
-
How about this? https://codepen.io/PointC/pen/aboNbEm Happy tweening.
-
Loops are your friends when you need to make several ScrollMagic scenes. I recently wrote a post about GSAP and ScrollMagic. Check out demo #4 and #7 as they show how to create multiple scenes with a jQuery loop. You can of course use a vanilla JS loop too. Hopefully that helps. Happy tweening.
-
Another option is not using ScrollMagic on small screens. Here's a thread from yesterday that shows how you can either enable/disable scenes or create/destroy the controller at certain widths. Maybe that'll give you some ideas too. Happy tweening.
-
We need to hold back certain things so all the mods look like we know what we're doing.
-
The GreenSock Animation Platform:
-
This should help.
-
You're missing the GSAP plugin from ScrollMagic <script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.min.js"></script> Happy tweening.
- 1 reply
-
- 4
-
-
I think moving the scripts to the bottom of the page will solve this for you.
-
In addition to the great advice from Shaun and Zach, I thought I'd point you to this similar thread. It has a little bit of extra info which might help too. Happy tweening.
-
The path isn't morphing as you'd like because your paths have some funky points. The thin has more than the thick and some of the point positions on the thin look very odd to me. Ideally on a shape like that you'd have 8 points. Here's a side by side comparison of your thin and thick. As with all things SVG, it comes down to asset prep making your life a lot easier. Just FYI — you don't need three shapes for this. Your original and thin versions are the same. You can just morph back to the original whenever you like. Hopefully that helps. Happy tweening.
-
@Arintoos I received your private message, but we need to keep support out here in the public forum. I think you're just missing the ThrowProps plugin on your site. https://greensock.com/docs/Plugins/ThrowPropsPlugin That is a Club plugin. https://greensock.com/club/ Happy tweening.
- 5 replies
-
- 3
-
-
- vertical
- horizontal
-
(and 2 more)
Tagged with:
-
Is this possible? SVG masking a "ken burns" image slider?
PointC replied to DougInTexas's topic in GSAP
Yep, very doable. In addition to Zach's excellent advice I'd offer the possibility of using the SVG clip-path too. Masks differ a bit and are great when you need strokes or gradients to be part of the mask. Here's a quick clip-path option. Maybe it'll give you some ideas. https://codepen.io/PointC/pen/xxKwZqQ Happy tweening and welcome aboard. -
Are you saying Draggable isn't working for you in my demos? Or do you mean that you forked the demos, made changes and now it's not working?
- 5 replies
-
- 1
-
-
- vertical
- horizontal
-
(and 2 more)
Tagged with:
-
Just a couple typos. //line 4 switch this tween.to('#box', 1{pacity:0}); // to this tween.to('#box', 1, {opacity:0}); // line 8 switch this const scene = new ScrollMagic.scene({ //to this const scene = new ScrollMagic.Scene({ You'll also need to load jQuery since we're using that for the resize listener. If you load that script and make those changes, you'll be good to go. Happy tweening.