npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cssonly-loaders-react

v0.0.8

Published

React wrapper for the CSS Only Loaders project (https://github.com/theanam/css-only-loaders)

Downloads

35

Readme

React component for the CSS only loader project

React wrapper for the CSS Only loaders project.

CSS Only Loaders

How to use

Download the module with npm (or yarn)

yarn add cssonly-loaders-react

The module come with two component, <Loader/> and <FullLoader/>, The Loader is also a default export.

to use only the loader, component, without any wrapper or anything, use the sample code:

    import Loader from "cssonly-loaders-react";

    function App(props){
        return (
            <Loader/>
        )
    }

Every prop has default, so,it will still render without any props, It should render the simple-circle loader with default colors and attributes.

If you want to use a loader, that fills in the container and blocks everything(most probable use IMO) you need to use the FullLoader component.

To use the full loader, make sure the loader container has position set to anothing other than static. because this component relies on position absolute.

Here's a barebone sample code:

    import Loader from "cssonly-loaders-react";

    function App(props){
        return (
            <FullLoader/>
        )
    }

It should render the simple circle loader with all the default color and attributes with a semi-transparent, black rgba(0,0,0,0.4) backdrop.

You can change the loader attributes with props

List of props:

| Prop | value type | default | available for | description | | ---- | ---------- | ------- | ------------- | ----------- | | type |String| simple-circle | ALL | Type of loader available. See table of loaders below | | size |Number| 70 | ALL | Loader size in pixels | | color |String| #27ae60 | ALL | The color for the loader | | secondaryColor| String | #eeeeee | ALL | The secondary color for the loader | | backgroundColor |String| rgba(0,0,0,0.4) | <FullLoader/> | The backdrop color for the full size loader. use a rgba color for better effect.| | line |Number| 3 | ALL | Line width for the loaders that features line this unit is in pixels. No need to include px. just use a number | | duration |Number| 2 | ALL | Animation duration in seconds| | visible | Boolean | true | ALL | Determine if the loader will be visible or not. Takes the extra pain away for implementing any show-hide logic.|

Available Loaders

All the loaders from the main project is available in the component:

| Loader Name | | ----------- | | simple-circle | | rotating-plane | | awesome-spin | | blasting-circle | | box-rotation | | clock | | color-pulse-ball | | double-circle | | hour-glass | | quantum-spinner | |recursive-circle | | block-spin | | cascading-bars |

Any new loader added to the project will be added to the component as well.