Allows users to customize the background.

interface Background {
    get background(): string;
    set background(background: string): void;
    get zIndex(): string;
    set zIndex(zIndex: string): void;
}

Accessors

Accessors

  • get background(): string
  • Returns string

    CSS used to control the background of the background element.

    "white"
    
  • set background(background: string): void
  • Parameters

    • background: string

      CSS used to control the background of the background element.

    Returns void

  • get zIndex(): string
  • Returns string

    CSS used to control the z-index of the background element.

    "1000"
    
  • set zIndex(zIndex: string): void
  • Parameters

    • zIndex: string

      CSS used to control the z-index of the background element.

    Returns void