fade/scale animation

This commit is contained in:
Samuel Newman
2024-10-30 18:17:51 +00:00
parent e9f6a8e58d
commit 729a27af0c
3 changed files with 73 additions and 15 deletions
+8
View File
@@ -5,4 +5,12 @@ import {registerRootComponent} from 'expo'
import App from '#/App'
const splash = document.querySelector('#splash')
if (splash) {
splash.classList.add('animate-splash')
setTimeout(() => {
splash.remove()
}, 500)
}
registerRootComponent(App)