monks/transition_property

The transition-property CSS property sets the CSS properties to which a transition effect should be applied.

Values

pub const all: #(String, String)
  • : All properties that can transition will.
pub const inherit: #(String, String)
pub const initial: #(String, String)
pub const none: #(String, String)
  • : No properties will transition.
pub fn raw(value: String) -> #(String, String)

Enter a raw string value for transition-property

pub const revert: #(String, String)
pub const revert_layer: #(String, String)
pub const unset: #(String, String)
pub fn var(variable: String) -> #(String, String)

Enter a variable name to be used for transition-property. It will be wrapped in var() and have -- prepended.

Search Document