monks/animation_composition
The animation-composition CSS property specifies the {{Glossary(“composite operation”)}} to use when multiple animations affect the same property simultaneously.
Values
pub const accumulate: #(String, String)
- : The effect and underlying values are combined. For animation types where the addition operation is not commutative, the order of the operands is the underlying value followed by the effect value.
pub const add: #(String, String)
- : The effect value builds on the underlying value of the property. This operation produces an additive effect. For animation types where the addition operation is not commutative, the order of the operands is the underlying value followed by the effect value.
pub fn raw(value: String) -> #(String, String)
Enter a raw string value for animation-composition
pub const replace: #(String, String)
- : The effect value overrides the underlying value of the property. This is the default value.
pub const revert_layer: #(String, String)