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

effects.css

v3.7.1

Published

A cross-browser library of CSS animations. As easy to use as an easy thing.

Downloads

4

Readme

Effects.css

Effects.css is a bunch of cool, fun, and cross-browser animations for you to use in your projects. Great for emphasis, home pages, sliders, and general just-add-water-awesomeness.

Demonstration

Check out all the animations here!

Installation

Install via npm:

$ npm install effects.css --save

or yarn:

$ yarn add effects.css

Usage

To use Effects.css in your website, simply drop the stylesheet into your document's <head>, and add the class animated to an element, along with any of the animation names. That's it! You've got a CSS animated element. Super!

<head>
  <link rel="stylesheet" href="effects.css/dist/effects.min.css" />
</head>

or use a CDN hosted version by JSDeliv

<head>
  <link rel="stylesheet" href="https://www.jsdelivr.com/package/npm/effects.css" />
</head>

Animations

To animate an element, add the class animated to an element and one of the following classes to the element :

| Class Name | | | | | -------------------- | ---------------------- | ------------------- | ----------------------- | | bounce | flash | pulse | rubberBand | | shake | headShake | swing | tada | | wobble | jello | bounceIn | bounceInDown | | bounceInLeft | bounceInRight | bounceInUp | bounceOut | | bounceOutDown | bounceOutLeft | bounceOutRight | bounceOutUp | | fadeIn | fadeInDown | fadeInDownBig | fadeInLeft | | fadeInLeftBig | fadeInRight | fadeInRightBig | fadeInUp | | fadeInUpBig | fadeOut | fadeOutDown | fadeOutDownBig | | fadeOutLeft | fadeOutLeftBig | fadeOutRight | fadeOutRightBig | | fadeOutUp | fadeOutUpBig | flipInX | flipInY | | flipOutX | flipOutY | lightSpeedIn | lightSpeedOut | | rotateIn | rotateInDownLeft | rotateInDownRight | rotateInUpLeft | | rotateInUpRight | rotateOut | rotateOutDownLeft | rotateOutDownRight | | rotateOutUpLeft | rotateOutUpRight | hinge | jackInTheBox | | rollIn | rollOut | zoomIn | zoomInDown | | zoomInLeft | zoomInRight | zoomInUp | zoomOut | | zoomOutDown | zoomOutLeft | zoomOutRight | zoomOutUp | | slideInDown | slideInLeft | slideInRight | slideInUp | | slideOutDown | slideOutLeft | slideOutRight | slideOutUp | | heartBeat | boingInUp | boingOutDown | bombLeftOut | | bombRightOut | foolishIn | foolishOut | holeOut | | magic | washOut | openDownLeft | openDownLeftOut | | openDownLeftReturn | openDownRight | openDownRightOut | openDownRightReturn | | openUpLeft | openUpLeftOut | openUpLeftReturn | openUpRight | | openUpRightOut | openUpRightReturn | perspectiveDown | perspectiveDownReturn | | perspectiveLeft | perspectiveLeftReturn| perspectiveRight | perspectiveRightReturn| | perspectiveUp | perspectiveUpReturn | puffIn | puffOut | | rotateDown | rotateLeft | rotateRight | rotateUp | | slideDown | slideDownReturn | slideLeft | slideLeftReturn | | slideRight | slideRightReturn | slideUp | slideUpReturn | | spaceInDown | spaceInLeft | spaceInRight | spaceInUp | | spaceOutDown | spaceOutLeft | spaceOutRight | spaceOutUp | | swap | swashIn | tinDownIn | tinDownOut | | tinLeftIn | tinLeftOut | tinRightIn | tinRightOut | | tinUpIn | tinUpOut | twisterInDown | twisterInUp | | vanishIn | vanishOut |

<h1 class="animated bounce">Example</h1>

You can include the class infinite for an infinite loop.

<h1 class="animated infinite bounce">Example</h1>

It's possible to add delays directly on the element's class attribute by including one of the following classes.

| Class Name | Delay Time | | ---------- | ---------- | | delay-2s | 2s | | delay-3s | 3s | | delay-4s | 4s | | delay-5s | 5s |

<h1 class="animated infinite bounce delay-2s">Example</h1>

It's possible to change the duration of your animations, add a delay or change the number of times that it plays:

.yourElement {
  animation-duration: 3s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
}

Note: The default delays are from 1 second to 5 seconds only. If you need custom delays, add it directly to your own CSS code.

It's possible to control the speed of the animation by adding these classes, as a sample below:

| Class Name | Speed Time | | ---------- | ---------- | | slow | 2s | | slower | 3s | | fast | 800ms | | faster | 500ms |

Note: The animated class has a default speed of 1s. If you need custom duration, add it directly to your own CSS code.

<div class="animated bounce faster">Example</div>

Usage

All effects are in dist/effects.min.css file, you can easily use with

 <link href="effects.css/dist/effects.min.css" rel="stylesheet" type="text/css" />

but if you want only few effects, you can use the file which is called as the effect name.

Example

<link href="effects.css/dist/effects-core.min.css" rel="stylesheet" type="text/css" />
 <link href="effects.css/dist/bounceIn.min.css" rel="stylesheet" type="text/css" />
  <div id="div1">DIV 1</div>
  <script>
    var div1 = document.querySelector("#div1");
    div1.classList.add("animated");
    div.classList.add("zoomIn");
  </script>

License

Effects.css is based on Animate.css v3.7.2 by Daniel Eden and 96 contributors and on magic v1.4.5 by miniMAC and 9 contributors.

Contributing

Pull requests are the way to go here. We only have two rules for submitting a pull request: