Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@ritterim/skellycss
Advanced tools
A light-weight CSS framework to quickly implement skeletons into your projects.
A light-weight CSS framework to quickly implement skeletons into your projects.
Include the skelly.css file wherever you add your CSS:
<link rel="stylesheet" href="../dist/skelly.css">
Include the skelly.js file wherever you add your JavaScript:
<script src="../dist/skelly.js"></script>
You can quickly get started using skellyCSS using the JavaScript utility, like so:
<h2 class="skeleton skeleton--md" data-animation="true"></h2>
<p class="skeleton" data-lines="4" data-animation="true"></p>
See full JavaScript Utility docs below
Skeletons can be quickly added to any project with a few simple lines of code.
Apply the skeleton
class to any type of header and it will automatically adjust to the font-size of the header stylings:
<h1 class="skeleton"></h1>
<h2 class="skeleton"></h2>
<h3 class="skeleton"></h3>
<h4 class="skeleton"></h4>
<h5 class="skeleton"></h5>
<h6 class="skeleton"></h6>
You can create paragraph skeletons by applying the skeleton
class to the paragraph tag, then including however many span tags you'd like with the skeleton__line
class within the paragraph. In order to make the paragraph skeleton look more like a paragraph, the last line is set to 50% width.
<div>
<p class="skeleton">
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
</p>
</div>
You can adjust the line width by applying a size modifier class:
Width | Modifier Class |
---|---|
Small, 25% | .skeleton--sm |
Medium, 50% | .skeleton--md |
Large, 75% | .skeleton--lg |
Full, 100% | .skeleton--full |
<h1 class="skeleton skeleton--sm"></h1>
<h1 class="skeleton skeleton--md"></h1>
<h1 class="skeleton skeleton--lg"></h1>
<h1 class="skeleton skeleton--full"></h1>
You can text align the skeleton using alignment modifier classes:
Alignment | Modifier Class |
---|---|
Left | .skeleton--left |
Center | .skeleton--center |
Right | .skeleton--right |
<!-- Left Align -->
<p class="skeleton skeleton--left">
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
</p>
<!-- Center Align -->
<p class="skeleton skeleton--center">
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
</p>
<!-- Right Align -->
<p class="skeleton skeleton--right">
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
<span class="skeleton__line"></span>
</p>
You can create an image skeleton by adding the .skeleton-image
class to an img tag -- do not include the src
attribute. By default this will apply the image skeleton at 100% height and width of the parent container.
Here are some default sizes we have included for skeleton images:
Size | Modifier Class |
---|---|
Small, 50x50 | .skeleton-image--sm |
Medium, 100x100 | .skeleton-image--md |
Large, 200x200 | .skeleton-image--lg |
X-Large, 400x400 | .skeleton-image--xl |
Full, 100% x 100% | .skeleton-image--full |
<img class="skeleton-image skeleton-image--md" />
<img class="skeleton-image skeleton-image--sm" />
<img class="skeleton-image skeleton-image--lg" />
<img class="skeleton-image skeleton-image--xl" />
You can also make different image shapes using shape modifier classes:
Shape | Description | Modifier Class |
---|---|---|
Landscape Rectangle | Sets the width of the image to 100% | .skeleton-image--landscape |
Portrait Rectangle | Sets the height of the image to 100% | .skeleton-image--portrait |
Circle | Sets the border radius to 50% | .skeleton-image--circle |
<img class="skeleton-image skeleton-image--lg skeleton-image--landscape" />
<img class="skeleton-image skeleton-image--lg skeleton-image--portrait" />
<img class="skeleton-image skeleton-image--lg skeleton-image--circle" />
To add animation, add a span.skeleton--animation
within the .skeleton__line
elements in headers or paragaphs.
<div>
<p class="skeleton">
<span class="skeleton__line">
<span class="skeleton--animation"></span>
</span>
<span class="skeleton__line">
<span class="skeleton--animation"></span>
</span>
<span class="skeleton__line">
<span class="skeleton--animation"></span>
</span>
<span class="skeleton__line">
<span class="skeleton--animation"></span>
</span>
</p>
</div>
The easiest and our preferred way to add Skeletons is by using the included JavaScript utilities.
On either a header tag or a paragraph tag, add the skeleton
class and a data-lines
attribute with the number of lines you'd like the skeleton to have:
<h2 class="skeleton skeleton--md" data-lines="2"></h2>
<p class="skeleton" data-lines="7"></p>
You can also give the skeleton animation by adding the data-animation
attribute and setting it to true
:
<h2 class="skeleton skeleton--md" data-animation="true"></h2>
<p class="skeleton" data-lines="7" data-animation="true"></p>
FAQs
A light-weight CSS framework to quickly implement skeletons into your projects.
The npm package @ritterim/skellycss receives a total of 7 weekly downloads. As such, @ritterim/skellycss popularity was classified as not popular.
We found that @ritterim/skellycss demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.