mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 15:11:04 +00:00
22 lines
732 B
JavaScript
22 lines
732 B
JavaScript
/*!
|
|
{
|
|
"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": "https://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'));
|
|
});
|