1D0-720 · Question #75
What CSS3 property allows you to create smooth animations between states?
The correct answer is B. transition. transition is the CSS3 property that enables smooth animations between two states - for example, smoothly changing a button's background color on hover instead of snapping instantly. animation (A) is used for keyframe-based animations that can loop or run independently, not…
Question
What CSS3 property allows you to create smooth animations between states?
Options
- Aanimation
- Btransition
- Ctransform
- Dtranslate
How the community answered
(29 responses)- A10% (3)
- B86% (25)
- C3% (1)
Explanation
transition is the CSS3 property that enables smooth animations between two states - for example, smoothly changing a button's background color on hover instead of snapping instantly. animation (A) is used for keyframe-based animations that can loop or run independently, not simply between two states. transform (C) defines a visual change (like rotate or scale) but doesn't control the timing or smoothness of that change. translate (D) is a function used within transform to move elements - it's not a standalone property at all.
Memory tip: Think "transition = change over time" - the word itself implies moving from one thing to another, just like transitioning between two states in CSS.
Topics
Community Discussion
No community discussion yet for this question.