@okiba/easings

Easings functions used in okiba.js

Usage no npm install needed!

<script type="module">
  import okibaEasings from 'https://cdn.skypack.dev/@okiba/easings';
</script>

README

Okiba / easings

Collection of easings to alter a value

__

import {easeInQuad} from '@okiba/easings'
const easedProgress = easeInQuad(progress)

Installation

npm i --save @okiba/easings

Or import it directly in the browser

<script type="module" src="https://unpkg.com/@okiba/easings/index.js"></script>

Usage

import easings from '@okiba/easings'

Untranspiled code 🛑

Okiba Core packages are not transpiled, so don't forget to transpile them with your favourite bundler. For example, using Babel with Webpack, you should prevent imports from okiba to be excluded from transpilation, like follows:

{
  test: /\.js$/,
  exclude: /node_modules\/(?!(@okiba)\/).*/,
  use: {
    loader: 'babel-loader',
    options: {
      presets: ['@babel/preset-env']
    }
  }
}