mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
21 lines
508 B
JavaScript
21 lines
508 B
JavaScript
/*!
|
|
{
|
|
"name": "CSS rgba",
|
|
"caniuse": "css3-colors",
|
|
"property": "rgba",
|
|
"tags": ["css"],
|
|
"notes": [{
|
|
"name": "CSSTricks Tutorial",
|
|
"href": "https://css-tricks.com/rgba-browser-support/"
|
|
}]
|
|
}
|
|
!*/
|
|
define(['Modernizr', 'createElement'], function(Modernizr, createElement) {
|
|
Modernizr.addTest('rgba', function() {
|
|
var style = createElement('a').style;
|
|
style.cssText = 'background-color:rgba(150,255,150,.5)';
|
|
|
|
return ('' + style.backgroundColor).indexOf('rgba') > -1;
|
|
});
|
|
});
|