Skeleton Loader Generator

Generate shimmer loading effects with animations

Skeleton Type

Colors

Sizing

20px
4px
3

Animation

1.5s

Presets

Live Preview

Generated CSS

.skeleton {
  background: linear-gradient(
    90deg,
    #e5e7eb 25%,
    #f3f4f6 50%,
    #e5e7eb 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.skeleton-text {
  height: 20px;
  width: 100%;
  margin-bottom: 8px;
}

.skeleton-image {
  width: 100%;
  height: 100px;
  margin-bottom: 8px;
}

.skeleton-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.skeleton-button {
  width: 100%;
  height: 30px;
}

.skeleton-card {
  width: 100%;
  padding: 16px;
  border-radius: 4px;
}