Jump to content
Search Community

chrisgannon last won the day on March 26 2014

chrisgannon had the most liked content!

chrisgannon

Business
  • Posts

    176
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by chrisgannon

  1. Regarding your addition of the class dragDot to the Dot component (and removal of the ref array), would it not now be best to remove the forwardRef as this is functionality no longer used/required and simply declare Dot as a basic component? @Rodrigo E.g. function Dot (){ return <circle className="dragDot" cx="275" cy="379.48" r="10" />; };
  2. Quick sanity check - this is the beginnings of a project I'm working on (drag the black dot around the dial). Given React is a big fussy baby when it comes to where code is placed and executed, is this the correct way to do it? (mainly regarding the placement of the onDrag but if you spot any other issues I'm all ears - I want to avoid unnecessary re-renders etc). https://codepen.io/chrisgannon/pen/ExpwvvR/44359a27b9cb436f0fcffba87cecdfca
  3. Lovely - thanks @GreenSockand @Rodrigo ?
  4. I am trying to use Draggable with GSAP 3 and React 18.2.0 and I'm getting the following error: react-dom.production.min.js:79 Uncaught TypeError: Cannot read properties of undefined (reading 'svg') at Object.Hd [as save] (gsap.min.js:10:53239) at gsap.min.js:10:53947 at Array.forEach (<anonymous>) at Kd (gsap.min.js:10:53918) at new Draggable (Draggable3.min.js:10:16255) at Draggable3.min.js:10:15515 at Array.map (<anonymous>) at Function.create (Draggable3.min.js:10:15492) at Context.<anonymous> (pen.js?key=pen.js-18939f83-8a31-62b2-2c73-38edd5336eee:10:17) at Cw (gsap.min.js:10:44676) Am I doing something wrong? I found this post from 2018 regarding an issue with React 16.5 adding dragClickables:true but this isn't the solution. Cheers!
  5. Just updating this post to the (now) simpler syntax of const q = gsap.utils.selector(document);
  6. If the elements you want to stagger are all in the same group or container, using yourRef.childNodes works fine too. <g ref={element => {container = element}} > <circle.... <circle.... <path.... </g> Then let container = useRef(); gsap.to(container.childNodes, { stagger: { ... } })
  7. goToAndStop is a Lottie/Bodymovin method to, well, go to and stop at a frame. I'm not randomly including ActionScript
  8. Wow this is 7 years old! Back then we had to add everything inside css:{}
  9. Please remember to include the full license if you use this (my work) in your project ?
  10. My idea to just use it in the same way as it's already used: gsap.timeline({ defaults: { ease: 'circ' } }); tl.to('#a, #b', { keyframes: [ { ... }, { ... } ] }) I think both approaches have their upsides although I would be reluctant to add more special properties given the framework already has syntax to handle multiple targets. I do like the fact your suggestion supports from and fromTo though
  11. I would love to be able to use keyframes with different targets. @GreenSock
  12. This smells like someone forgot the new default duration in GSAP 3.x is 0.5 and not 1!
  13. It seems there's typo in the docs - it should be tween.pause(0.25); - this generates the correct logged values.
  14. Seems delay is being ignored when I set timeScale on a timeline.
  15. Cheers Jack - I'll give it a whirl
  16. I would like to use the onStartevent of a timeline to do something when you start scrolling a ScrollTrigger animation. I've noticed that before any interaction at all, onEnterfires once and onStart fires 3 times. I think I understand why onEnter fires but I was only expecting onStart to fire once you start scrolling. Any ideas? Update: I've just noticed onStart also fires when I resize the browser window too.
  17. Cheers Jack - just glad I'm not going mad.
  18. I've either misunderstood what gsap.utils.random does or it's spitting out the wrong values. Click the pen and a random value will display. My understanding was that it will choose values between 0 and 100,000 (in this case). But it actually displays negative values too. If I put a snapping number in, like 1, (gsap.utils.random(0, 100000, 1)) it picks values from the correct range (but I don't get decimals).
  19. Here's a slightly different approach to stagger using separate Card components: https://codepen.io/chrisgannon/pen/670fe4387dba87db9632440da8d262b8 Just by changing one value (numCards) you can have as many as you want.
  20. What you see there was some software I was developing that was a progression from a more convoluted process involving motion tracking. I was never very happy with the results and ended up using my initial process which I'll describe. So this initial process involved several steps using different software. I never posted the steps because it was really complicated and had a lot of quirks. If I remember correctly, I generated tracking data using Mocha inside After Effects. I then wrote a parser to convert it to a corner pin data format (basically an array of X and Y vector points). Then I used a library called PerspectiveTransform.js to apply the corner pin data to an element (this was crucial) — this could be anything from a video to an SVG or JPG. This library skewed and scaled elements based on their X and Y data. Then I converted the video I wanted to composite the element onto to an image sequence (massive faff!). A lot of people thought I was using video but at the time, video events and keyframes were really unreliable, the browser specs kept changing and it couldn't keep up with the data stream half the time anyway. I then created a player that accepted the image sequence, the element(s) to composite (these could be interactive like a DIV of HTML elements) and the corner pin data and married the whole lot up on a draggable timeline (that could also be played back). My overall aim with this project was to have interactive elements composited onto video and tracked in 3D space which I managed to do (I even managed to track an image sequence in 3D space composited on top of another video) — bizarrely all of the demos were done in Edge Animate because at the time I was transitioning from Flash to not Flash and I didn't know pure JS, CSS or anything. Chrome kept changing its video specs so every week or so I had to update my libraries. These changes were so frequent (and often broke all my work) that I eventually gave up because it was just far too much work to keep it maintained, plus the whole process of getting an interactive element tracked in 3D and composited onto video was a sprawling mess! Having said that, the results were pretty good so it wasn't all wasted time Hope that helps!
  21. Old post but here's a useful link: https://path2bezier.netlify.com/ Oops just noticed it's mentioned above! Must be good then...
  22. Ok I think I have found a solution. myTimeline.labels returns an object whose keys are the label name and whose properties are their time. E.g. {labelName:12, otherLabelName: 23} So if you want the parent timeline to play from the child timeline's previous label you could write something like: parentTl.play( childTl.labels[childTl.previousLabel()] );
  23. When I type into the help search I can no results (for anything). http://greensock.com/docs#/HTML5/
  24. I have a parent timeline. I have a child timeline that I've added to the parent timeline. Both play at the same time. The child timeline has labels. I need to get the time associated with a child label so I can tell the parent timeline to go to that time. I think getLabelTime did that but it's no longer part of the 3.0 API? Is there another way?
×
×
  • Create New...