backgroundblendmode.js 741 B

123456789101112131415161718192021
  1. /*!
  2. {
  3. "name": "CSS Background Blend Mode",
  4. "property": "backgroundblendmode",
  5. "caniuse": "css-backgroundblendmode",
  6. "tags": ["css"],
  7. "notes": [{
  8. "name": "CSS Blend Modes could be the next big thing in Web Design",
  9. "href": "https://medium.com/@bennettfeely/css-blend-modes-could-be-the-next-big-thing-in-web-design-6b51bf53743a"
  10. },{
  11. "name": "Demo",
  12. "href": "https://bennettfeely.com/gradients/"
  13. }]
  14. }
  15. !*/
  16. /* DOC
  17. Detects the ability for the browser to composite backgrounds using blending modes similar to ones found in Photoshop or Illustrator.
  18. */
  19. define(['Modernizr', 'prefixed'], function(Modernizr, prefixed) {
  20. Modernizr.addTest('backgroundblendmode', prefixed('backgroundBlendMode', 'text'));
  21. });