UNPKG

modernizr

Version:

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.

24 lines (23 loc) 752 B
/*! { "name": "CSS Background Blend Mode", "property": "backgroundblendmode", "caniuse": "css-backgroundblendmode", "tags": ["css"], "notes": [ { "name": "CSS Blend Modes could be the next big thing in Web Design", "href": " https://medium.com/@bennettfeely/css-blend-modes-could-be-the-next-big-thing-in-web-design-6b51bf53743a" }, { "name": "Demo", "href": "http://bennettfeely.com/gradients/" } ] } !*/ /* DOC Detects the ability for the browser to composite backgrounds using blending modes similar to ones found in Photoshop or Illustrator. */ define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) { Modernizr.addTest('backgroundblendmode', prefixed('backgroundBlendMode', 'text')); });