After Effects Tutorial | Page Turning Animation

Поделиться
HTML-код
  • Опубликовано: 8 сен 2024

Комментарии • 24

  • @JafarFazel
    @JafarFazel  9 месяцев назад +1

    The Expression that I used:
    amp = .1;
    freq = 1.5;
    decay = 3.0;
    n = 0;
    time_max = 4;
    if (numKeys > 0){
    n = nearestKey(time).index;
    if (key(n).time > time){
    n--;
    }}
    if (n == 0){ t = 0;
    }else{
    t = time - key(n).time;
    }
    if (n > 0 && t < time_max){
    v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
    value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
    }else{value}

  • @XIAMEN-GOGO
    @XIAMEN-GOGO 8 месяцев назад +1

    I really like your teaching😍

  • @ArcHive-oo2vn
    @ArcHive-oo2vn 9 месяцев назад

    That's amazing to hear you do have a course.

    • @JafarFazel
      @JafarFazel  9 месяцев назад

      Thank you so much!

  • @Hadi.Hosseini.1999
    @Hadi.Hosseini.1999 8 месяцев назад

    Your teaching so nice and applied.❤

    • @JafarFazel
      @JafarFazel  8 месяцев назад

      Glad it was helpful.☺

  • @zahrafazel-dl2pf
    @zahrafazel-dl2pf 3 месяца назад

    It was so cool❤

  • @user-vm6qb3ur2n
    @user-vm6qb3ur2n 8 месяцев назад

    It's so useful for me. Thanks alot.❤

    • @JafarFazel
      @JafarFazel  8 месяцев назад

      You're welcome 😊

  • @vanemotion
    @vanemotion 9 месяцев назад

    ¡Great animation!👌

  • @adama_yt
    @adama_yt Месяц назад

    hello
    please i cant seem to find the motion tool as described in the video, is it downloadable or in the effects and presets

    • @JafarFazel
      @JafarFazel  Месяц назад

      Hello, yes it's downloadable!

    • @adama_yt
      @adama_yt Месяц назад

      @@JafarFazel okay thanks

  • @jaysonfontela5761
    @jaysonfontela5761 9 месяцев назад

  • @GloryZoneTv
    @GloryZoneTv 9 месяцев назад

    Can't seem to find expression for the bounce effect you used in the video? Pls share

    • @JafarFazel
      @JafarFazel  9 месяцев назад +1

      Sorry, I totally forgot about it!
      Here you are:
      amp = .1;
      freq = 1.5;
      decay = 3.0;
      n = 0;
      time_max = 4;
      if (numKeys > 0){
      n = nearestKey(time).index;
      if (key(n).time > time){
      n--;
      }}
      if (n == 0){ t = 0;
      }else{
      t = time - key(n).time;
      }
      if (n > 0 && t < time_max){
      v = velocityAtTime(key(n).time - thisComp.frameDuration/10);
      value + v*amp*Math.sin(freq*t*2*Math.PI)/Math.exp(decay*t);
      }else{value}

    • @GloryZoneTv
      @GloryZoneTv 9 месяцев назад

      @@JafarFazel thank you! 🙏

  • @theredditfiles9189
    @theredditfiles9189 8 месяцев назад

    When I use rd slice it only cuts 1 piece not into 30

    • @JafarFazel
      @JafarFazel  8 месяцев назад +1

      Download the script from here:
      aescripts.com/rd-slicer/

    • @theredditfiles9189
      @theredditfiles9189 8 месяцев назад

      @JafarFazel Ahhhh yes this is where I downloaded it from but it only does 1 piece doesn't separate it into 30 layers like your video only 1 😢