InterviewSolution
Saved Bookmarks
| 1. |
Which value specifies a transition effect with a slow start, then fast, then end slowly?(a) ease(b) linear(c) ease-in(d) ease-out |
|
Answer» Right answer is (a) ease To explain I would say: The transition-timing-function property takes the value ease. It specifies a transition effect with a slow start, then fast, then end slowly and this is the default value, ease-in specifies a transition effect with a slow start. |
|