Pageworks / papertrain

Papertrain: a Craft CMS 3 framework
http://download.papertrain.io
MIT License
5 stars 2 forks source link

DOM Animation Status Class #100

Closed codewithkyle closed 5 years ago

codewithkyle commented 5 years ago

globals.d.ts ANIMATION_DELAY: number

App.ts public static ANIMATION_DELAY: number = 1000; setTimeout(()=>{ html.classList.add('dom-is-animated') }, App.ANIMATION_DELAY);

TransitionManager.ts setTimeout(()=>{ html.classList.add('dom-is-animated') }, this._app.ANIMATION_DELAY);