|
|
@@ -13,6 +13,14 @@ onMounted(() => {
|
|
|
splash.setAttribute('isHold', 'true')
|
|
|
splash.style.opacity = '1'
|
|
|
splash.style.display = 'block'
|
|
|
+
|
|
|
+ setTimeout(() => {
|
|
|
+ if (splash) {
|
|
|
+ splash.removeAttribute('isHold')
|
|
|
+ splash.style.opacity = '0'
|
|
|
+ splash.style.display = 'none'
|
|
|
+ }
|
|
|
+ }, 800)
|
|
|
}
|
|
|
})
|
|
|
</script>
|