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

@zhaostephen/avoidance

v0.2.3

Published

A standalone library for creating avoidance-cloud particle effects, beautifully.

Downloads

15

Readme

avoidance.js

Quick Start

The two easiest ways to use avoidance.js are

  1. to CDN directly to the distributable browser-ready JS; or
  2. to install to your project via a node package manager such as yarn.

To CDN:

Choose one of the following script tags to add directly to your HTML.

<!-- Get a specific version -->
<script src="https://cdn.jsdelivr.net/npm/@zhaostephen/[email protected]/dist/avoidance.min.js"></script>

<!-- Get patch fixes within the minor version -->
<script src="https://cdn.jsdelivr.net/npm/@zhaostephen/[email protected]/dist/avoidance.min.js"></script>

<!-- Get minor updates and patch fixes within the major version -->
<script src="https://cdn.jsdelivr.net/npm/@zhaostephen/avoidance@0/dist/avoidance.min.js"></script>

<!-- Always get the latest version -->
<!-- Not recommended for production sites! Only use if you know what you're doing. -->
<script src="https://cdn.jsdelivr.net/npm/@zhaostephen/avoidance/dist/avoidance.min.js"></script>

To install to a Node.js project:

Run in one of the following in your project directory (depending on your package manager):

yarn add @zhaostephen/avoidance
npm install --save @zhaostephen/avoidance

To use:

Import

If using with ES modules, import the library like so:

import Avoidance from "@zhaostephen/avoidance";

If using CommonJS, import the library like so:

const Avoidance = require("@zhaostephen/avoidance");

If using directly in the browser, the library is accessible through a global variable, Avoidance.

Create and run

Then simply instantiate an Avoidance on the container of your choice, and call start.

new Avoidance('#my-container').start();

Replace #my-container with the query selector for the container on which you want the mouse-over/touch effect to occur. All children elements will then be animated as particles.

API Reference

Constructor

new Avoidance(containerSelector: string, options?: AvoidanceUserOptions, addChildrenAsParticles?: boolean)
  • containerSelector: a query selector (similar to CSS selector) that specifies which elements will activate the avoidance effect when moused over or touched.
  • options [optional]: a options object that specifies parameters for how the avoidance effect behaves. Defaults to {}. See the options section below for what can be tweaked!
  • addChildrenAsParticles [optional]: a boolean that specifies whether or not the children of the specified containers will be automatically added as particles upon instantiation. Defaults to true.

Other methods

TODO: Documentation for other methods will be added later.

Configuration Options

The Avoidance constructor takes in an options object as its second parameter.

Example

An example AvoidanceUserOptions object is given below.

{
  factorMethod: {
    name: "powerInverse",
    offset: 0.05,
    power: 0.8,
  },
  displacementMethod: "noThreshold",
  timing: "easeOutCubic",
}

Keys

An AvoidanceUserOptions object can take any combination of the following optional keys and values.

factorMethod

factorMethod specifies what method to use to determine the avoidance distance multiplier.

It can be either a string or an object.

  • If a string, it can be one of "inverse", "powerInverse", or "exponential".
  • If an object, it can contain any combination of the following keys and values:
    • name: one of "inverse", "powerInverse", or "exponential".
    • scale: a floating-point number.
    • offset: a floating-point number.
    • power: a floating-point number.

The default behaviour is

{
  name: "powerInverse",
  scale: 0.02,
  offset: 0.0,
  power: 0.6,
}

This may be used as a reference point for modifying the values.

If only a name is provided, the default value for the remaining keys will adjust accordingly.

displacementMethod

displacementMethod specifies what method to use to calculate avoidance displacement, given the distance multiplier.

It can be either a string or an object.

  • If a string, it can be one of "noThreshold", or "threshold".
  • If an object, it can contain any combination of the following keys and values:
    • name: one of "noThreshold", or "threshold".
    • thresholdRadius: a floating-point number

The default behaviour is

{
  name: "threshold",
  thresholdRadius: 0.1,
}

This may be used as a reference point for modifying the values.

If only a name is provided, the default value for thresholdRadius will adjust accordingly.

timing

timing is a string that specifies an easing for the touch animations.

It can be one of "linear", "easeOutCubic", or "easeOutExpo".

The default value is "easeOutExpo".

pathing

pathing is a string that specifies the path taken by touch animations.

It can be one of "linear" or "bezierQuad".

The default value is "bezierQuad".

additional options

TODO: additional options will come in the future. Stay on the lookout!

TODO

  • support rotation animation
  • add typedefs in typescript
  • needs further API documentation