svelte-scramble
v2.1.16
Published
A simple and reusable scramble effect for your Svelte applications
Readme
svelte-typewriter
A simple and reusable typewriter effect for your Svelte applications
Installation
# yarn
yarn add -D svelte-scramble
# npm
npm i -D svelte-scrambleUsage
You need to import the Svelte component, and wrap your elements with the <Typewriter> component
<script>
import Scramble from 'svelte-scramble';
</script>
<Scramble>
<h1>THIS TEXT WILL BE SCRAMBLED</h1>
</Scramble>