tsparticles
Version:
Easily create highly customizable particle, confetti and fireworks animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.
17 lines (16 loc) • 430 B
TypeScript
import { IMotionReduce } from "./IMotionReduce";
/**
* [[include:Options/Motion.md]]
* @category Options
*/
export interface IMotion {
/**
* Disables motions for users with `prefer-reduced-motion` enabled
*/
disable: boolean;
/**
* Reduce motion settings for users with `prefer-reduced-motion` enabled
* If [[disable]] is `true` these values will be ignored
*/
reduce: IMotionReduce;
}