adjusted with the ‘animation-duration property’, and the individual timings of animation using percentage values either. http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#9
web design is see that animation in context with all objects inside, background, text etc. The stage is also key to focusing attention. http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#2
physics can also be applied. For animation objects that are falling down, gravity is necessary to be used. http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#5
the pose to pose technique, keyframes of action, and filling the intermediate frames automatically by browser. http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#4
beginning, and then speeds up. - ease-out: Fast at the beginning, and then slows to a stop. - ease-in-out: Starts slow, speeds up in the middle, and then slows to a stop. - linear: Moves at an even speed from start to finish. http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#6
} /* cubic-bezier here is to adjust the animation-timing speed. This example makes the ball take longer to slow down. */ @-webkit-keyframes ball-x { 0% { -webkit-transform: translateX(-275px); } 100% { -webkit-transform: translateX(0px); } } http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a-cartoon#7
87% { -webkit-transform: scaleX(1.2); /* Subtler squash for the last few bounces */ } 97% { -webkit-transform: scaleX(1.1); /* Even subtler squash for last bounce */ } } http://www.fastcodesign.com/3030106/disneys-12-principles-of-animation-in-a- cartoon#10