diff --git a/src/components/effects/ScrambleText.vue b/src/components/effects/ScrambleText.vue index ac81dd1..b41a01f 100644 --- a/src/components/effects/ScrambleText.vue +++ b/src/components/effects/ScrambleText.vue @@ -86,7 +86,9 @@ function scramble(scrambleAmount = props.scrambleAmount, replaceInterval = props setTimeout(fillContent, fillInterval) else fillContent() } else { - replaceContent(text, replaceInterval, 0) + setTimeout(()=> { + replaceContent(text, replaceInterval, 0) + }, spec * 500) } } fillContent()