Spinner

A spinner, sometimes called a loader, is typically a circle or a similar shape that indicates something is currently loading. It is often animated to spin, hence its name.

Example

<div class="spinner" role="progressbar"></div>

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

Accessibility