Computer Multimedia Animation Unit 2 Assignment
Computer Multimedia Animation Unit 2 Assignment
1. What is animation?
Ans: Animation is simply making pictures or objects look like they’re
moving. It's done by showing a series of images quickly, one after
another, to create the illusion of motion
2. What is interpolation?
Ans: Interpolation is a method used to estimate or create new data
points within the range of a set of known data points. In simple
terms, it helps to fill in the gaps between existing values.
6/8 Marks
4. Can you control the timing and duration of CSS animations? If so,
how?
Ans: Yes, you can control the timing and duration of CSS animations
using the following properties:
1. animation-duration: Specifies how long the animation should take
to complete one cycle.
o Example: animation-duration: 3s; (The animation lasts for 3
seconds).
2. animation-delay: Adds a delay before the animation starts.
o Example: animation-delay: 1s; (The animation starts 1 second
after it's triggered).
3. animation-timing-function: Determines the speed curve of the
animation, controlling how the animation progresses over time.
o Common values: ease, linear, ease-in, ease-out, ease-in-out,
or a custom cubic-Bezier function.
o Example: animation-timing-function: ease-in-out; (Starts and
ends slowly, but moves faster in the middle).