What is Tweening?
Tweening is a familiar term for those used to animating in Flash. With CSS animation we can use the latter, pose to pose.
Also Read: HTML Interview Questions and Answers
Example
p {
animation-duration: 2s;
animation-name: slidein;
}
@keyframes slidein {
from {
margin-left: 95%;
width: 200%;
}
to {
margin-left: 0%;
width: 100%;
}
}
Suggest An Answer
No suggestions Available!