mirror of
https://github.com/animate-css/animate.css.git
synced 2024-11-11 05:46:32 +01:00
15 lines
547 B
JavaScript
15 lines
547 B
JavaScript
|
import buildDocsIndex from './modules/buildDocsIndex.mjs';
|
||
|
import playground from './modules/playground.mjs';
|
||
|
import startAnimations from './modules/startAnimations.mjs';
|
||
|
import toggleOnClick from './modules/toggle.mjs';
|
||
|
|
||
|
buildDocsIndex();
|
||
|
playground();
|
||
|
|
||
|
toggleOnClick('.callout-showList', 'html', 'animationList-active');
|
||
|
toggleOnClick('.callout-hideList', 'html', 'animationList-active');
|
||
|
toggleOnClick('.hamburger', 'html', 'hamburger-active');
|
||
|
toggleOnClick('.docs-index', 'html', 'hamburger-active');
|
||
|
|
||
|
requestAnimationFrame(startAnimations);
|