Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stevemao/color-transitions
https://github.com/stevemao/color-transitions
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stevemao/color-transitions
- Owner: stevemao
- License: mit
- Created: 2016-09-11T13:09:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-10-19T11:24:54.000Z (about 8 years ago)
- Last Synced: 2024-10-15T09:22:33.432Z (3 months ago)
- Language: JavaScript
- Size: 18.6 KB
- Stars: 6
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# color-transitions [![Build Status](https://travis-ci.org/stevemao/color-transitions.svg?branch=master)](https://travis-ci.org/stevemao/color-transitions) [![Coverage Status](https://coveralls.io/repos/github/stevemao/color-transitions/badge.svg?branch=master)](https://coveralls.io/github/stevemao/color-transitions?branch=master)
> Smooth color transitions
**Experimental module**
[Visual demo](http://www.webpackbin.com/41GwsiZa-)
## Install
```
$ npm install --save color-transitions
```## Usage
```js
const colorTransitions = require('color-transitions');colorTransitions('blue', 'red', color => {
// `color` will be the color value between 'blue' and 'red'
});
```## API
### colorTransitions(color1, color2, [options], cb)
#### color1, color2
Same as the [color setter](https://github.com/Qix-/color#setters).
#### options
##### duration
Type: `number`
Default: `1000`The transition duration option specifies the number of seconds or milliseconds a transition animation should take to complete.
##### timing
Type: `string` or `function`
Default: `'linear'`The transition timing function option is used to describe how the intermediate values of the color being affected by a transition effect are calculated. This in essence lets you establish an acceleration curve, so that the speed of the transition can vary over its duration.
If this is string, the function would be from [eases](https://github.com/mattdesl/eases).
##### threshold
Type: `number`
Default: `60`Maximum number of callbacks that can occur in one second.
##### iterations
Type: `number` or `boolean`
Default: `1`How many transitions between two colors. Specify `true` to make it infinite.
#### cb
Type: `function`
Callback function. If return `false`, stop immediately.
##### cb(color, delta, iteration)
###### color
Type: `array`
RGB array
###### delta
Type: `number`
How much time has passed since last callback in milliseconds.
###### iteration
Type: `number`
Which iteration. Counting from 1.
###### done
Type: `boolean`
Is the transition done?
## License
MIT © [Steve Mao](https://github.com/stevemao)