DefinitelyTyped/types/jquery-gray/jquery-gray-tests.ts
2018-06-29 13:14:16 -04:00

17 lines
264 B
TypeScript

import { Options } from "jquery-gray";
// basic usage
$('.images').gray();
$('.images').toggleClass('grayscale-off');
// with options
const options: Options = {
fade: true,
classes: {
fade: 'grayscale-fade'
}
};
$('.images').gray(options);