transition-property
The transition-property CSS property specifies the name of the CSS property to which the transition is applied.
CSS
transition-property: value;
JS
object.style.transitionProperty = "value";
Values
<'transition-property'> = none | <single-transition-property>#
none
No property will transition.
<single-transition-property> = all | <custom-ident>
all
Indicates all properties are to be transitioned.
<custom-ident>
Specifies any valid identifier that is not misinterpreted as a keyword.
Initial
none
all
custom-ident
JS
Internal
External