Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 516 Bytes

no-low-performance-animation-properties.md

File metadata and controls

27 lines (18 loc) · 516 Bytes

Pattern: Use of low performance animation

Issue: -

Description

This rule reports the use of low performance animation and transition properties.

Example of incorrect code:

div {
  transition: margin-left 350ms ease-in;
}

Example of correct code:

div {
  transition: transform 350ms ease-in;
}

Further Reading