modernizr
Version:
Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user’s browser.
23 lines (19 loc) • 542 B
JavaScript
/*!
{
"name": "Background Size Cover",
"property": "bgsizecover",
"tags": ["css"],
"notes": [{
"name" : "MDN Docs",
"href": "http://developer.mozilla.org/en/CSS/background-size"
}]
}
!*/
define(['Modernizr', 'testStyles'], function( Modernizr, testStyles ) {
testStyles('#modernizr{background-size:cover}', function( elem ) {
var style = window.getComputedStyle ?
window.getComputedStyle(elem, null)
: elem.currentStyle;
Modernizr.addTest('bgsizecover', style.backgroundSize == 'cover' );
});
});