{"id":47962870,"url":"https://github.com/charlesvien/react-animatecss","last_synced_at":"2026-04-04T10:02:54.156Z","repository":{"id":57101249,"uuid":"389427983","full_name":"charlesvien/react-animatecss","owner":"charlesvien","description":"🎨 A React component implementing the latest version of Animate.css","archived":false,"fork":false,"pushed_at":"2021-09-27T00:50:12.000Z","size":3373,"stargazers_count":14,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-31T13:42:48.041Z","etag":null,"topics":["animate-css","animatecss","javascript","react","reactjs","typescript"],"latest_commit_sha":null,"homepage":"https://react-animatecss.com","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/charlesvien.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-25T19:41:39.000Z","updated_at":"2023-02-21T10:32:39.000Z","dependencies_parsed_at":"2022-08-20T21:10:58.601Z","dependency_job_id":null,"html_url":"https://github.com/charlesvien/react-animatecss","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/charlesvien/react-animatecss","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlesvien%2Freact-animatecss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlesvien%2Freact-animatecss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlesvien%2Freact-animatecss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlesvien%2Freact-animatecss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/charlesvien","download_url":"https://codeload.github.com/charlesvien/react-animatecss/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/charlesvien%2Freact-animatecss/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31395450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T09:13:02.600Z","status":"ssl_error","status_checked_at":"2026-04-04T09:13:01.683Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["animate-css","animatecss","javascript","react","reactjs","typescript"],"created_at":"2026-04-04T10:02:53.573Z","updated_at":"2026-04-04T10:02:54.147Z","avatar_url":"https://github.com/charlesvien.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-animatecss\n\n[![npm package][npm-img]][npm-url]\n[![Downloads][downloads-img]][downloads-url]\n[![Build Status][build-img]][build-url]\n\n\u003e A React component implementing the latest version of [Animate.css](https://animate.style)!\n\n- **Zero dependencies** - All self contained code\n- **Minimal package size** - \u003c7 kB gzipped\n- **No messy installation** - A simple way to add motion to your react components\n\n## Demo\n\n[Take a look at the demo](https://react-animatecss.com/)\n\n## Installation\n\n```bash\n# with npm\nnpm install @charlesvien/react-animatecss\n\n# with yarn\nyarn add @charlesvien/react-animatecss\n```\n\n## Documentation\n\nThe official Animate.css documentation can be found at https://animate.style. You can view a list of all animations that your able to use with this component on their website.\n\n## Usage\n\nThis is a basic example showing how to add a fadeIn and fadeOut animation to a component.\n\n**NOTE:** In order for the fadeOut animation to occur, instead of conditionally rendering the component you must pass ``false`` to the ``visible`` prop when the component should no longer be visible.\n\n```js\nimport Animate from '@charlesvien/react-animatecss';\n\n\u003cAnimate\n  animationIn=\"fadeIn\"\n  animationOut=\"fadeOut\"\n  inDuration={1000}\n  outDuration={1000}\n  visible\n\u003e\n  Magnolia\n\u003c/Animate\u003e\n```\n\n## API\n\n| Prop         | Type     | Default     | Description                                                          |\n|--------------|----------|-------------|----------------------------------------------------------------------|\n| animationIn  | string   | fadeIn      | The animation name to be played when the component turns visible     |\n| animationOut | string   | fadeOut     | The animation name to be played when the component turns invisible   |\n| inDelay      | number   | 0           | The delay before the visible animation is played                     |\n| outDelay     | number   | 0           | The delay before the invisible animation is played                   |\n| inDuration   | number   | 1000        | The duration the visible animation is played                         |\n| outDuration  | number   | 1000        | The duration the invisible animation is played                       |\n| repeat       | number   | 0           | How many times the animation repeats (min: 1, max: 3)                |\n| onMount      | boolean  | true        | If the animation should play when the component is first mounted     |\n| visible      | boolean  | true        | If the Animate component should be visible                           |\n| loop         | boolean  | false       | If the animation should infinitely loop                              |\n| className    | string   | _undefined_ | Additional optional css class names to apply to the container        |\n| style        | object   | _undefined_ | Additional optional css properties to apply to the container         |\n\n## Development\n\nContributions are welcome to react-animatecss!\n\nTo set up the project:\n\n1.  Fork and clone the repository\n2.  `$ yarn`\n3.  `$ yarn dev`\n\nStorybook will then be served on http://localhost:6006/ in watch mode, meaning you don't have refresh the page to see your changes.\n\n[npm-img]:https://img.shields.io/npm/v/@charlesvien/react-animatecss\n[npm-url]:https://www.npmjs.com/package/@charlesvien/react-animatecss\n[build-img]:https://github.com/charlesvien/react-animatecss/actions/workflows/release.yml/badge.svg\n[build-url]:https://github.com/charlesvien/react-animatecss/actions/workflows/release.yml\n[downloads-img]:https://img.shields.io/npm/dt/@charlesvien/react-animatecss\n[downloads-url]:https://www.npmtrends.com/@charlesvien/react-animatecss","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlesvien%2Freact-animatecss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcharlesvien%2Freact-animatecss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcharlesvien%2Freact-animatecss/lists"}