New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

colorin

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorin

colors Interpolation

Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
2.7K
1.83%
Maintainers
1
Weekly downloads
 
Created
Source

colorin

colors interpolation

Examples

base
pie
maptalks points
maptalks polygons
zoom stops
custom imagedata size

Install

  • CDN
<script src="https://unpkg.com/colorin/dist/colorin.js"></script>
  • NPM
npm i colorin
# or
yarn add colorin

API

ColorIn class

constructor(colors, [options])

  • colors Color collection
import {
    ColorIn
} from 'colorin';

const colors = [
    [0, '#226412'],
    [2, '#4C931B'],
    [4, '#80BD3F'],
    [6, '#B9E287'],
    [8, '#E7F5D1'],
    [10, '#F7F7F7'],
    [13, '#226412'],
    [16, '#80BD3F'],
    [18, '#F1B7DB'],
    [22, '#DF78AF'],
    [24, '#C6147E'],
    [26, '#8F0051']
];
const ci = new ColorIn(colors);
const [r, g, b, a] = ci.getColor(11);

//if you use cdn
const ci = new colorin.ColorIn(colors);

method

  • getColor(stop) get color by stop
const [r, g, b, a] = ci.getColor(11);
  • getImageData() get canvas image data
    const imgData = ci.getImageData();

FAQs

Package last updated on 28 Nov 2022

Related posts