├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── demo ├── css │ └── js-background-blend-mode.min.css └── demo.html ├── dist ├── js-background-blend-mode.js └── js-background-blend-mode.min.js ├── js-background-blend-mode.json ├── package.json ├── src ├── js-background-blend-mode.js └── js-background-blend-mode.less └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | *.log 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/README.md -------------------------------------------------------------------------------- /demo/css/js-background-blend-mode.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/demo/css/js-background-blend-mode.min.css -------------------------------------------------------------------------------- /demo/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/demo/demo.html -------------------------------------------------------------------------------- /dist/js-background-blend-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/dist/js-background-blend-mode.js -------------------------------------------------------------------------------- /dist/js-background-blend-mode.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/dist/js-background-blend-mode.min.js -------------------------------------------------------------------------------- /js-background-blend-mode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/js-background-blend-mode.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/package.json -------------------------------------------------------------------------------- /src/js-background-blend-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/src/js-background-blend-mode.js -------------------------------------------------------------------------------- /src/js-background-blend-mode.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/src/js-background-blend-mode.less -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanbrujo/js-background-blend-mode/HEAD/yarn.lock --------------------------------------------------------------------------------