DefinitelyTyped/types/jquery-sticky/jquery-sticky-tests.ts
maixiu ba31e6b551 add package jquery-sticky (#23162)
* add package jquery-sticky

* enabled tsconfig options
2018-01-24 10:16:00 -08:00

19 lines
353 B
TypeScript

// initialization
$('#sticker').sticky({
topSpacing: 12,
bottomSpacing: 12,
className: 'class-name',
wrapperClassName: 'wrapper-class-name',
center: true,
getWidthFrom: '#container',
widthFromWrapper: false,
responsiveWidth: true,
zIndex: '2'
});
// update element position
$('#sticker').sticky('update');
// unstick
$("#sticker").unstick();