An open API service indexing awesome lists of open source software.

https://github.com/krasimir/gulp-coloor

Gulp plugin for Coloor (image preloading utility)
https://github.com/krasimir/gulp-coloor

Last synced: 8 months ago
JSON representation

Gulp plugin for Coloor (image preloading utility)

Awesome Lists containing this project

README

          

# gulp-coloor

Gulp plugin for [Coloor](https://github.com/krasimir/coloor) image preloading utility.

## Installation

`npm i gulp-coloor -D`

## Usage

```js
var gulp = require('gulp');
var coloor = require('gulp-coloor');

gulp.task('decorate-html', function() {
gulp.src('src/*.*') // your html-ish files
.pipe(coloor({
sizeW: 3, // 3px width of the image preview. The height is calculated automatically.
images: [__dirname + '/photos'] // location of the image files
}))
.pipe(gulp.dest('./dist/'));
});

gulp.task('default', ['decorate-html']);
```