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

turn-down-for-what

v1.2.2

Published

Fire up that loud, Another round of shots

Downloads

115

Readme

Turn Down For What

npm npm

Fire up that loud, Another round of shots

Turn Down For What Video Thumbnail

Make your website wait for that epic beat drop.

Install

NPM

npm i turn-down-for-what -S

Usage

Babel

import turnDownForWhat from 'turn-down-for-what';

turnDownForWhat();

ES6

const turnDownForWhat = require('turn-down-for-what');

turnDownForWhat();

Arguments

The turnDownForWhat function takes two arguments.

const affectedNodes = ['img', 'svg', 'p'];
const options = { noDelay: true };

turnDownForWhat(affectedNodes, options);
  • affectedNodes: An array with the HTML tags that are supposed to be affected by the CSS animation. The code uses document.querySelectorAll to retrieve the nodes, so the syntax must be the same. The default is ['*'], meaning all tags will be matched.

Example

// Animates only divs matching the class 'animate' and the tag <p id="banner">
turnDownForWhat(['div.animate', 'p#banner']);
  • options: The second argument is an object that can configure some parameters:
    • noDelay [default: false]: By default the animation creates a random delay for the intro, making it look that each node is joining the party one at a time. If you are animating a single node, or you just want to have them all jump at the same time, pass true to disable the delay and avoid weird behaviours.

      Example

      // Everything will start the animation at the same time
      turnDownForWhat(['*'], { noDelay: true });
    • jitterAmount [default: 10]: A modifier for the amount of jitter the animation will receive during the intro. Increase to be more "shaky", and decrease for a more "stable" animation.

      Values below 4 behave poorly, with little to no jitter.

    • numKeyframes [default: 10]: By default 10 random keyframes are generated. You can define how many you want with this property.

    • numTurntAnimations [default: 10]: After the drop your page will Turn Down For What. Define how many animations (keyframes) you want for this part (does not affect the intro). The default is 10.

      Example

      // Increase the number of animations
      turnDownForWhat(['*'], {
        numKeyframes: 20,
        numTurntAnimations: 20,
      });
    • maxNodes [default: 1000]: For performance reasons only the first 1000 nodes will be animated. If you wish to override, pass another value.

License

MIT

Contact

You can reach me on my Github or send an email to [email protected].


This code has been ~~copied~~ inspired by: https://github.com/nthitz/turndownforwhatjs