• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Quick opacity face out

Explorer ,
May 25, 2017 May 25, 2017

Copy link to clipboard

Copied

Is there a quick way to fade out opacity, not having to create manual keyframes?

Thanks!

Views

367

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Engaged , May 25, 2017 May 25, 2017

you can do this with an expression. paste this on the opacity value. you can control when the fade happens by adjusting the beginning and end of your layers.

var fadeDur = 1;

var fadeIn = linear(time-thisLayer.inPoint,0,fadeDur,0,100);

var fadeOut = linear(time-(thisLayer.outPoint-fadeDur),0,fadeDur,0,100);

fadeIn-fadeOut

Votes

Translate

Translate
LEGEND ,
May 25, 2017 May 25, 2017

Copy link to clipboard

Copied

You can do it with an expression, but that takes even longer.

You can make and save an animation preset to do it if you want to apply a standard-duration opacity change over and over again.

But in truth, if it takes you any more than 10 seconds to animate opacity from 100 to 0, you either need practice... or more practice.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Engaged ,
May 25, 2017 May 25, 2017

Copy link to clipboard

Copied

you can do this with an expression. paste this on the opacity value. you can control when the fade happens by adjusting the beginning and end of your layers.

var fadeDur = 1;

var fadeIn = linear(time-thisLayer.inPoint,0,fadeDur,0,100);

var fadeOut = linear(time-(thisLayer.outPoint-fadeDur),0,fadeDur,0,100);

fadeIn-fadeOut

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 26, 2017 May 26, 2017

Copy link to clipboard

Copied

LATEST

It works!! Thanks a lot

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
People's Champ ,
May 25, 2017 May 25, 2017

Copy link to clipboard

Copied

Animation preset?

~Gutterfish

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines