Skip to content

Instantly share code, notes, and snippets.

@yeasin2002
Created November 22, 2024 20:02
Show Gist options
  • Select an option

  • Save yeasin2002/918d2a95beed087ae2a887c1e5ba911d to your computer and use it in GitHub Desktop.

Select an option

Save yeasin2002/918d2a95beed087ae2a887c1e5ba911d to your computer and use it in GitHub Desktop.
wave skeleton

html

    <div class="skeleton-loader"></div>

CSS

.skeleton-loader {
  width: 300px;
  height: 20px;
  background: linear-gradient(90deg, #eeeeee 25%, #dedede 50%, #eeeeee 75%);
  background-size: 200% 100%;
  animation: loading 2s infinite ease-in-out;  
} 

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment