Spaces:
Running
Running
File size: 847 Bytes
1763642 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | class LoadingSpinner extends HTMLElement {
connectedCallback() {
this.attachShadow({ mode: 'open' });
this.shadowRoot.innerHTML = `
<style>
.spinner {
animation: spin 1s linear infinite;
width: 2rem;
height: 2rem;
border: 0.25rem solid rgba(59, 130, 246, 0.2);
border-top-color: rgb(59, 130, 246);
border-radius: 50%;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
</style>
<div class="flex justify-center items-center">
<div class="spinner"></div>
</div>
`;
}
}
customElements.define('loading-spinner', LoadingSpinner); |