filter-gradient
v1.0.1
Published
Generate filter gradients for the old IE.
Downloads
1,484
Readme
filter-gradient
Generate filter gradients for the old IE
Install
npm install filter-gradient --save
Usage
var filterGradient = require('filter-gradient');
var gradient = filterGradient('#7abcff', '#4096ee'/*, 0 or 1*/);
console.log(gradient);
// progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7abcff', endColorstr='#ff4096ee', GradientType=0)
API
filterGradient(startColor, endColor?, gradientType?);
startColor
Type: string
The start color. Any CSS color formats, like blue
, rgb()
, rgba()
, #RRGGBBAA
, hsl()
endColor
Type string
The end color. Like startColor
, but it's optional. If you omit this, it will use the startColor
, it will be useful if you
want generate rgba()
fallback for old IE.
gradientType
Type number
0
or 1
. 0
is vertical gradient, 1
is horizontal gradient, default value is 0
;
CHANGELOG
2015-12-20
- Make the filter string more regular
- Change color string lower case
2015-11-11
- First release.