TitleSite: Fix longer delay after first transition
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-04-21 15:05:33 +02:00
parent 5b4fe1c6d6
commit ecc69e3206
3 changed files with 21 additions and 11 deletions

View File

@@ -24,15 +24,17 @@ export let currentLocation = writable()
export let currentPhotos = writable()
// State
export let pageReady = writable(false, () => {})
export let fullscreen = writable(undefined, () => {})
/* ==========================================================================
Animation related
========================================================================== */
export let firstLoad = writable(true, () => {})
export let pageReady = writable(false, () => {})
export let pageAnimation = writable(() => {}, () => {})
export const animDelay = 900
export const animPanelDelay = 900
export const animPanelShortDelay = 600
export const animDuration = 1400
export const animDurationLong = 1800