meo-canvas - v8.1.5
    Preparing search index...

    Interface DropShadowProps

    Defines the properties for a drop-shadow effect, similar to CSS filter: drop-shadow(). This shadow respects the transparency of the content, unlike box-shadow.

    interface DropShadowProps {
        blur?: number;
        color?: string;
        offsetX?: number;
        offsetY?: number;
    }
    Index
    blur?: number

    The blur radius. Larger values create bigger, softer shadows. Must be non-negative.

    Pixels.

    0 (hard shadow)
    
    color?: string

    The color of the shadow. Accepts standard CSS color strings.

    'black'
    
    offsetX?: number

    The horizontal offset of the shadow. Positive values move it right, negative values left.

    Pixels.

    0
    
    offsetY?: number

    The vertical offset of the shadow. Positive values move it down, negative values up.

    Pixels.

    0