Go Away

Image of the day

IMG_7465.jpg

Extras

Syndication

What we do

  • Web 2.0 design is closer than you think!

    Web Design

    Take a look at our Web Design
    Portfolio. Bring Web 2.0 closer
    to you!
    Learn more...

  • Cutting edge Graphics design

    Graphics Design

    Check out the latest cutting-edge
    graphics design.
    Read more...

  • Motion Graphics and film/video production

    Film and Video

    Professional Motion Graphics,
    VFX and film/video services.
    Learn more...

New tutotial is here!

Organic growing Elements

Organic growing element Learn how to create an organic growing design element.
Examine new expressions to easy animate and control an easy-ease bounce effect.
Read more...
Layer bounce effect

elastic layer bounce in after effectsSomeone have asked me a question:

 

 

i was wondering if you can give an idea about how a bounce or elastic effect could be achieved in after effects.

This is quite simple effect which could be achieved using a simple expression like this:

inertia = 0.92;
i= 0.5;
start=rotation;
angle=90;

for (j=0; j<=time; j+=thisComp.frameDuration) {
target=thisComp.layer("plate").rotation.valueAtTime(j);
diff = (target-start);
angle = [angle*inertia + diff*i ]
start += angle;
}
start;

In the above example that expression is applied to a "Z rotation" property of a 3D layer

Download a sample project file to get better idea how it's done.