2.1.16 • Published 3 years ago

svelte-scramble v2.1.16

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

svelte-typewriter

A simple and reusable typewriter effect for your Svelte applications

PRs Welcome

Installation

# yarn
yarn add -D svelte-scramble

# npm
npm i -D svelte-scramble

Usage

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>