You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
11 years ago
|
// Sticky positioning - constrains an element to be positioned inside the
|
||
|
// intersection of its container box, and the viewport.
|
||
|
Modernizr.addTest('csspositionsticky', function () {
|
||
|
|
||
|
var prop = 'position:';
|
||
|
var value = 'sticky';
|
||
|
var el = document.createElement('modernizr');
|
||
|
var mStyle = el.style;
|
||
|
|
||
|
mStyle.cssText = prop + Modernizr._prefixes.join(value + ';' + prop).slice(0, -prop.length);
|
||
|
|
||
|
return mStyle.position.indexOf(value) !== -1;
|
||
|
});
|