Pattern: Use of low performance animation
Issue: -
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;
}