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

reveal.js-animate

v1.0.0

Published

Integration of the animation library animate.css to reveal.js

Downloads

1

Readme

reveal.js-animate

Integration of the animation library animate.css to reveal.js

Animate the childNodes of each slide identifying them by html tag (tagName). They are written in capital letters as: H1, H2, ...., H6, TABLE, IMG, DIV, P, OL, UL etc.

3 parameters are used:

  • Animation type: animated.
  • Speed: speed.
  • Times it is executed: repeat.

Check out the live demo

Animate.css

The animate.css library must be installed

$ npm install animate.css --save

and call from your local location

    <link rel="stylesheet" href="static/node_modules/animate.css/animate.css">

You can also call it externally by the CDN

<head>
  <link
    rel="stylesheet"
    href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
  />
</head>

Animations

Add any of these animations in the "animated" parameter:

  • Attention seekers: bounce, flash, pulse, rubberBand, shakeX, shakeY, headShake, swing, tada, wobble, jello, heartBeat.
  • Back entrances: backInDown, backInLeft, backInRight, backInUp.
  • Back exits: backOutDown, backOutLeft, backOutRight, backOutUp.
  • Bouncing entrances: bounceIn, bounceInDown, bounceInLeft, bounceInRight, bounceInUp.
  • Bouncing exits: bounceOut, bounceOutDown, bounceOutLeft, bounceOutRight, bounceOutUp.
  • Fading entrances: fadeIn, fadeInDown, fadeInDownBig, fadeInLeft, fadeInLeftBig, fadeInRight, fadeInRightBig, fadeInUp, fadeInUpBig, fadeInTopLeft, fadeInTopRight, fadeInBottomLeft, fadeInBottomRight.
  • Fading exits: fadeOut, fadeOutDown, fadeOutDownBig, fadeOutLeft, fadeOutLeftBig, fadeOutRight, fadeOutRightBig, fadeOutUp, fadeOutUpBig, fadeOutTopLeft, fadeOutTopRight, fadeOutBottomRight, fadeOutBottomLeft.
  • Flippers: flip, flipInX, flipInY, flipOutX, flipOutY
  • Lightspeed: lightSpeedInRight, lightSpeedInLeft, lightSpeedOutRight, lightSpeedOutLeft.
  • Rotating entrances: rotateIn, rotateInDownLeft, rotateInDownRight, rotateInUpLeft, rotateInUpRight.
  • Rotating exits: rotateOut, rotateOutDownLeft, rotateOutDownRight, rotateOutUpLeft, rotateOutUpRight
  • Specials: hinge, jackInTheBox, rollIn, rollOut.
  • Zooming entrances: zoomIn, zoomInDown, zoomInLeft, zoomInRight, zoomInUp.
  • Zooming exits: zoomOut, zoomOutDown, zoomOutLeft, zoomOutRight, zoomOutUp.
  • Sliding entrances: slideInDown, slideInLeft, slideInRight, slideInUp.
  • Sliding exits: slideOutDown, slideOutLeft, slideOutRight, slideOutUp.

Speed

Select the speed, if omitted it will select the default speed of 1s.

  • 2 sec.: slow.
  • 3 Sec.: slower.
  • 800ms.: fast.
  • 500ms.: faster.

Repeating

Select the repetitions, by default it is 1 time if you omit the parameter.

  • Repeat once: repeat-1.
  • Repeat once: repeat-2.
  • Repeat three times: repeat-3.
  • Repeat infinitely: infinite.

Installation

Download and install the package in your project:

$ npm install reveal.js-animate --save

Configuration

import RevealAnimate from './animate.esm.js';

  Reveal.initialize({
    plugins: [ RevealAnimate ]
  });

Global Setting

Reveal.initialize({
  // ...
 animated: {
      'H1':{'animated':'slideInDown'},
      'IMG':{'animated':'backInDown', 'repeat': 'repeat-2', 'speed':'slower'},
      'P':{'animated':'bounceInRight', 'speed':'fast'},
      'UL':{'animated':'jello', 'repeat': 'infinite', 'speed':'slower'}
    },
});

Manual Setting


<h1 data-animated="backInDown">Hello! I'm animated.</h1>

<p data-animated="zoomInLeft" data-repeat="repeat-2"  data-speed="slower">I am a slowly animated paragraph</p>

License

MIT licensed

Copyright (C) 2021 Antonio Fregoso, https://antoniofregoso.com