Go Away

Image of the day

IMG_9350.jpg

Extras

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...

Introducing our latest project: Color Petals Game for iPhone and iPad.

Color Petals iPhone gameColor Petals is a fun and unique way not only to enjoy a fast-paced puzzle game, but also refresh your math skills. How fast can you multiply or subtract a few numbers to get the right answer?
Combining great original music, unique and easy gameplay and colorful bright High Definition graphics Color Petals is one of the most original, challenging and fun games on the AppStore.

Read more about the game or check it out on the AppStore.

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.