@okiba/easings
v1.0.25
Published
Easings functions used in okiba.js
Downloads
18
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']
}
}
}