blurify

1.2.1 • Public • Published

blurify

travis dependencies devDependencies

blurify.js is a tiny(~2kb) library to blur pictures, with graceful downgrade support from css mode to canvas mode.

Installation

$ npm i blurify

DEMO

Demo

Usage

blurify(options)

blurify the images with given options:

  • images { Element }, blurify target elements.
  • blur { Int }, extent of blur, defaulting to 6.
  • mode { String }, mode of blurify.
    • css: use filter property.(default)
    • canvas: use canvas export base64.
    • auto: use css mode firstly, otherwise switch to canvas mode by automatically.
import blurify from 'blurify';

new blurify({
    images: document.querySelectorAll('.blurify'),
    blur: 6,
    mode: 'css',
});

// or in shorthand

blurify(6, document.querySelectorAll('.blurify'));

License

Licensed under the MIT License

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.2.1152latest

Version History

VersionDownloads (Last 7 Days)Published
1.2.1152
1.2.00
1.1.02
1.0.80
1.0.70
1.0.60
1.0.50
1.0.40
1.0.30
1.0.20
1.0.12
1.0.00

Package Sidebar

Install

npm i blurify

Weekly Downloads

145

Version

1.2.1

License

MIT

Unpacked Size

21 kB

Total Files

18

Last publish

Collaborators

  • justclear