Performances optimizations WIP
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-17 14:33:49 +02:00
parent bb5689f0b6
commit 3c05d6d222
17 changed files with 211 additions and 181 deletions

View File

@@ -25,14 +25,14 @@ export let currentPhotos = writable()
// State
export let pageReady = writable(false, () => {})
export let firstLoad = writable(true)
export let fullscreen = writable()
export let fullscreen = writable(undefined, () => {})
/* ==========================================================================
Animation related
========================================================================== */
export const animDelay = 800
export const animPanelDelay = 1000
export let pageAnimation = writable(() => {}, () => {})
export const animDelay = 900
export const animPanelDelay = 900
export const animDuration = 1400
export const animDurationLong = 1800