mil-pulse-spinner
v1.0.1
Published
Pulse spinner for webcomponents developed with litElement
Maintainers
Readme
<mil-pulse-spinner>
'mil-pulse-spinner' is a loading spinner that exposes a pulse animation. It uses lit-element and can be used with any webcomponent.
Demo: https://stackblitz.com/edit/mil-pulse-spinner-example?file=index.js
Usage
Install from npm
npm install --save mil-pulse-spinnerImport to your webcomponent
import "mil-pulse-spinner";Add to html
<mil-pulse-spinner id="myMilPulseSpinner"></mil-pulse-spinner>Remove element when needed
When loading is complete, simply remove the element.
const spinner = this.shadowRoot.getElementById("myMilPulseSpinner");
targetElement.addEventListener("loaded", function() {
spinner.remove();
});Styling
Use customs CSS properties for styling.
| CSS property | Default |
| -------------------- | ------- |
| --color1 | Black |
| --color2 | White |
| --width | 40px |
| --height | 40px |
