css-skeletons

## Documentation

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
css-skeletons
5501.0.72 years ago4 years agoMinified + gzip package size for css-skeletons in KB

Readme

Single div, dynamic, fully customizable CSS library.

Documentation

See full documentation

Getting Started

Use from CDN

<!-- UNPKG -->
<link rel="stylesheet" href="https://unpkg.com/css-skeletons@1.0.7/dist/css-skeletons.min.css"/>

<!-- JSDelivr -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/css-skeletons@1.0.7/dist/css-skeletons.min.css"/>

or

Install from NPM

npm i css-skeletons

import 'css-skeletons'

Examples

A few example from documentation.
<div
  class="skeleton skeleton-line"
  style="
    --lines: 6; /* lines count */
    --l-h: 10px; /* line height */
    --l-gap: 8px; /* line gap */
"
></div>

example 1
<div class="skeleton skeleton-card-3"></div>

example 2
<div
  class="skeleton skeleton-list no-animate"
  style="
        --lines: 5;
        --bg: #ffb6b67d;
        --c-bg: #ff92922b;
        --bullet-ratio: 1.5;
        --l-gap: 15px;
"
></div>

example 3