DefinitelyTyped/types/jquery-animate-scroll/jquery-animate-scroll-tests.ts
2018-06-10 11:05:09 -04:00

22 lines
361 B
TypeScript

import { Options } from "jquery-animate-scroll";
// basic usage
$('a').animateScroll();
$('#article-1').scrollHere();
$.scrollTo($('#article-1'));
// with options
const options: Options = {
$container: $('body'),
speed: 1000,
offset: -100
};
$('a').animateScroll(options);
$('#article-1').scrollHere(options);
$.scrollTo($('#article-1'), options);