Jump to content
Search Community

fripi

Premium
  • Posts

    86
  • Joined

  • Last visited

About fripi

  • Birthday 03/27/1978

Contact Methods

Recent Profile Visitors

4,545 profile views
  1. OK thank you, that's indeed logic Now I need to see if I can have multiple paths like the initial post of this thread
  2. With a little search and a lot of inspiration of other pens I came to this https://codepen.io/fripi/pen/zYbKadQ But when I pause my animTL at the creation and click on the button noting happens if I don't pause the animation restarts every time I click
  3. Hi, this is a pretty old topic, but exactly what I need, I'm searching a much more recent version because when I try to replace the External Scripts from tweenmax to gsap it stops working... Also I don't understand why snap is useful 🤔 just an svg with MotionPath could be better ?
  4. fripi

    Splittext and <pre>

    Thank you Jack, luckily it's a short snippet that needs to be animated So it was already very packed and by adding a lot of spans it works ? it's great I love that plugin
  5. fripi

    Splittext and <pre>

    Hi, I'm trying to kind of animate a code typewriting. I'm using <pre> to layout the text and it starts well, but after 3 lines it doesn't respect any layout anymore and just put everything in one line any clues ? thanks
  6. thanks @Cassie I learned something new once more ?
  7. I changed some settings and tried to add an ease at the start and end of the whole animation, but now numbers don't start from 0 anymore, what have I done wrong this time ?
  8. https://codepen.io/fripi/pen/XWZYZww Yeah it is indeed pretty fast ?
  9. in terms of gsap animation, how can I put a global time to handle all the repeats, if the total time is 10s for example, how to align all those durations ? animTl .add("p1") .to(n1,{y:"-=800", repeat:200000},"p1") .to(n2,{y:"-=800", repeat:20000},"p1") .to(n3,{y:"-=800", repeat:2000},"p1") .to(n4,{y:"-=800", repeat:200},"p1") .to(n5,{y:"-=800", repeat:20},"p1") .to(n6,{y:"-=800", repeat:2},"p1") .to(n7,{y:"-=160"},"p1")
  10. Well is it even possible to make 7 columns move that fast, animation/cpu/gpu wise ? I'm no developer, animating thing, I did it in after effect mut in html I'm not sure
  11. Hi, this is a great example of what I'm trying to do, I understand the logic and animation for 1 number, I started with a div going vertically from 0 to 9... But I need to go from 0000000 to 2.000.000 in 5 or 10 s, which is very fast and involves 7 columns, so I don't know what to do, just make everything move very fast without really counting maybe... any idea ? in terms of repetition/loops that means that those values should be used for each column: .2 / 2 / 20 / 200 / 2000 / 20000 / 200000 seems difficult to handle
  12. Thanks again, I modified my pen, it works great, I will try later to shorten that code if I understand how
  13. @Cassie is there a way to start from array[0] for each sentence, or must I create a word array for each like that let words1 = gsap.utils.toArray('#txt1 .w') let words2 = gsap.utils.toArray('#txt2 .w') let words3 = gsap.utils.toArray('#txt3 .w') let words4 = gsap.utils.toArray('#txt4 .w') ...
  14. thank you @Cassie that's a discovery for me now i can just update that array to create the needed gradient woooowww
  15. Hi everyone, I'm here again with something that can maybe be done just in js but as I use gsap for my banner animation I thought it could also help me with some "design" problem. I have very strict guidelines to follow : for every sentence in my banner, every 2 words the color must change (yellow > orange > red > orange > yellow > orange...). So I started by just manually put some spans with styles (second text block in my pen) but that makes the code kind of difficult to read and also it messes up the breaklines. As I already use splittext to make it appear line by line I was thinking that maybe i could set a color by breaking the sentences by words, but i'm kind of stuck there in the logic, has anyone an idea ? thank you
×
×
  • Create New...