Type Alias style::values::animated::effects::AnimatedSimpleShadow

source ·
pub type AnimatedSimpleShadow = SimpleShadow<Color, Length, Length>;
Expand description

An animated value for the drop-shadow() filter.

Aliased Type§

struct AnimatedSimpleShadow {
    pub color: GenericColor<Percentage>,
    pub horizontal: CSSPixelLength,
    pub vertical: CSSPixelLength,
    pub blur: CSSPixelLength,
}

Fields§

§color: GenericColor<Percentage>

Color.

§horizontal: CSSPixelLength

Horizontal radius.

§vertical: CSSPixelLength

Vertical radius.

§blur: CSSPixelLength

Blur radius.