mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-05-17 23:21:04 +00:00
22 lines
669 B
JavaScript
22 lines
669 B
JavaScript
/*!
|
|
{
|
|
"name": "Scroll Snap Points",
|
|
"property": "scrollsnappoints",
|
|
"caniuse": "css-snappoints",
|
|
"notes": [{
|
|
"name": "Setting native-like scrolling offsets in CSS with Scrolling Snap Points",
|
|
"href": "http://generatedcontent.org/post/66817675443/setting-native-like-scrolling-offsets-in-css-with"
|
|
}, {
|
|
"name": "MDN Docs",
|
|
"href": "https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Scroll_Snap_Points"
|
|
}],
|
|
"polyfills": ["scrollsnap"]
|
|
}
|
|
!*/
|
|
/* DOC
|
|
Detects support for CSS Snap Points
|
|
*/
|
|
define(['Modernizr', 'testAllProps'], function(Modernizr, testAllProps) {
|
|
Modernizr.addTest('scrollsnappoints', testAllProps('scrollSnapType'));
|
|
});
|