Minimum Browser Support:
CSS3 Transitions
38.08%
Percentage of users who can view this feature (source: caniuse.com)
Uses CSS Transitions to provide smooth animations between page sections.
Makes extensive use of CSS Transitions to provide seamless transitions between different states.
if(Modernizr.csstransitions) {
//CSS Transforms are supported
}Learn more about detecting feature support with Modernizr.
In general, CSS3 transitions gracefully degrade when running in a browse that does not support the transitions. Instead of animating property changes (such as position), the changes will just take effect without the animation.
The main fallback solution when running content in a browser that does not support CSS3 transitions is to animate the content using JavaScript.