Interface IPreloaderStaticProps

Static properties for the Preloader module.

interface IPreloaderStaticProps {
    __staticProp?: null;
    container: null | HTMLElement;
    hide?: number | false;
}

Hierarchy (View Summary)

Properties

__staticProp?: null
container: null | HTMLElement

The container for the preloader. Set it to null if you only need the preloader logic.

hide?: number | false

Defines whether to automatically hide the preloader container.

  • false: Disables the hiding animation, allowing you to manage it manually.
  • number: Specifies the animation duration in milliseconds. This works only if the container is an HTML element.
250