2.0.0 • Published 1 year ago

@springernature/global-loader-animation v2.0.0

Weekly downloads
4
License
MIT
Repository
-
Last release
1 year ago

Global loader animation

Show a loading animation for async stuff, like requests etc

// Include this with your other components
@import '@springernature/global-loader-animation/scss/10-settings/default';
@import '@springernature/global-loader-animation/scss/50-components/loader';

Basic usage

import CssLoader from '@springernature/global-loader-animation/js';

const loader = new CssLoader();

// Show loader animation
loader.add();

// Remove loader animation
loader.remove();