Jump to content
Search Community

Smithfield

Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by Smithfield

  1. Thanks both, yup joined a bunch of those recently + no worries, thought it was a bit of a fuzzy Q. Was just curious if anyone had any tricks + was happy to provide a starting point for anyone else attempting similar (used a bunch of the forum to get to this point, so felt appropriate to give back in some tiny way).

     

    I'll keep noodling + post back if anything interesting results.

     

    Cheers!

  2. Hey, I've put together a little prototype of a header that has little connected nodes/floaty things - pretty much works ok as-is, but was hoping to make the "floaty" animation a bit better (sorry I know that's vague).

     

    I'm currently using 3 tweens with a random x + y to attempt to give it a bit of life.

     

    const duration = 6;
    const radialMovement = 10;
    
    let tl = gsap.timeline({
      yoyo: true,
      repeat: -1,
      onUpdate: animateNodeLines
    });
    
    tl
      .to(nodePrimary, {
        yPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        xPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        duration: duration
      })
      .to(nodePrimary, {
        yPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        xPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        duration: duration
      })
      .to(nodePrimary, {
        yPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        xPercent: `random(-${radialMovement}, ${radialMovement}, 1)`,
        duration: duration
      });

     

    Any pointers / tips / improvements all very much appreciated, thanks!

    See the Pen yLvRmyQ by slowrush (@slowrush) on CodePen

  3. Hello gsap devs! 👋

     

    We're Smithfield a small studio based in the UK looking for someone to help us with a static gsap site. It's for an amazing partner of ours that do lovely socially impactful work. Some examples of our work: Oneflow / Walr / Kindness / WWF: Planet Based Diets / Climate Policy Radar.

     

    Generally speaking we love collaborating longterm with friendly folks, but if you only have availability for a short-term project, we'd still like to hear from you as we have a good'un pretty much ready to go!

     

    Short-term gsap project:

    We're in the process of wrapping up the design with our partner, but would be happy to chat through it + provide more context on a call. There will be quite a bit of ScrollTrigger interactions, but nothing too crazy.

     

    Longer-term collaborations:

    If you're after a more collaborative long-term relationship please see the creative dev post here.

     

    If this sounds interesting to you please get in touch by popping a quick intro email over to hello@smithfield.studio with live examples of your latest & best work (happy with Codepens if portfolio still WIP).

     

    Looking forward to hearing from any/all interested! :)

    • Like 3
×
×
  • Create New...