3.2.3 • Published 4 months ago

svelte-typewriter v3.2.3

Weekly downloads
715
License
MIT
Repository
-
Last release
4 months ago

svelte-typewriter

A simple and reusable typewriter effect for your Svelte applications

PRs Welcome npm Version npm Downloads MadeWithSvelte.com shield

DEMO

Summary

Installation

pnpm i -D svelte-typewriter

pnpm is used here just as an example, you can use your package manager of choice

Usage

Component-based approach

In order to use this method, you need to import the Svelte component, and wrap your elements with the <Typewriter> component

<script>
    import Typewriter from 'svelte-typewriter'
</script>

<Typewriter>
    <h1>Testing the typewriter effect</h1>
</Typewriter>

Directive-based approach

This method relies on Svelte actions (more specifically, the use:action directive), in order to animate your components with this approach, you must import the directive of the animation mode you want to use and include it as a attribute on your element

<script>
    import { concurrent } from 'svelte-typewriter'
</script>

<p use:concurrent={{ interval: 30 }}>Testing the typewriter effect</p>

Each mode has it's own directive, which accepts a single object parameter that can be used to set the animation props (just like on the component-based approach)

There are just a few limitations of this approach to keep in mind:

  • For now, there's no way to have the cursor caret on the text being animated
  • Event listeners (like on:done) won't be triggered
  • Depending on the animation mode you're using, some essential animation properties must be explicitly specified, because they don't have default values when used on a directive, otherwise the animation won't work properly, those include interval, wordInterval, writeInterval and scrambleDuration

Props

The <Typewriter> component can receive props that allows to manipulate the behavior of the resulting animation, these props are divided into the following groups

  • Settings: general animation properties
  • Event listeners: functions executed based on the condition of a trigger
  • Child attributes: child elements animation properties
  • CSS variables: styling-related properties

Settings

PropTypeDescriptionDefault
modeconcurrent, cascade, loop, loopOnce, loopRandom or scrambleThe animation mode to be usedconcurrent
intervalnumber or arrayThe interval (in milliseconds) between each letter, you can also pass a array of distinct intervals to mimic human typing30
cursorbooleanEnables/disables the cursor on the Typewriter animationtrue
keepCursorOnFinishnumber or booleanKeep the cursor visible (indefinitely, or for a given amount of time, in milliseconds) after the animation has finishedfalse
delaynumberThe interval (in milliseconds) before the animation starts0
showCursorOnDelayboolean(only usable when delay is not 0) Shows the cursor during delay periodfalse
disabledbooleanEnables/disables the typewriter animationfalse
elementstringSets the tag that will be used for the container elementdiv
wordIntervalnumber(loop, loopOnce and loopRandom modes only) Sets the interval (in milliseconds) between each word1500
unwriteIntervalnumber(loop, loopOnce and loopRandom modes only) The interval (in milliseconds) between each letter unwrite, if not defined it uses interval30
scrambleDurationnumber(scramble mode only) Sets the duration (in milliseconds) of the scramble animation3000
scrambleSlowdownboolean(scramble mode only) Enables/disables the slowdown effect right before the scramble animation ends (only works in scramble mode)true

Modes

You can control the behavior of the typewriter effect by passing specific props to the <Typewriter> component, the table below contains information about all modes:

ModeDescription
concurrentApply animation simultaneously on all elements, as opposed to the sequential animation of cascade mode
cascadeApply animation on all elements sequentially instead of simultaneously
loopCycles the animation between the children elements of the parent Typewriter component
loopOnceIt's very similar to the loop mode, but the animation stops once it reaches the last element
loopRandomIt's very similar to loop mode, but instead of cycling the animation in a linear way, it picks a random child element to animate each time
scrambleSlowly reveals the a word by continuously randomizing all of it's letters for a specific amount of time

Event listeners

EventTrigger
on:doneIs executed at the end of the animation, if used with one of the loop modes, this event will be fired at the end of each loop

Child attributes

AttributeDescription
data-staticMarks an element as static, excluding it from receiving animations from the <Typewriter> component

CSS variables

VariableDescription
--cursor-colorSets the cursor color (accepts any valid color name, hex code and rgb/rgba values)
--cursor-widthSets the cursor width

Used by

FAQs

UMD and IIFE output formats are not supported for code-splitting builds.

From version 2.1.17 onwards, this library makes use of dynamic imports, if your Rollup configuration output.format is set to iife or umd, consider setting inlineDynamicImports to true, otherwise, change output.format to something else, like esm (for more details, consider checking #21)

Test suite failed to run: SyntaxError: Unexpected token '<'

This happens because Jest cannot parse Svelte syntax right away, it needs to be transformed by svelte-jester first, therefore, we must tell Jest to NOT ignore svelte-typewriter, as by default, everything inside node_modules is ignored and parsed as-is without any kind of pre-processing, this can be done by setting the transformIgnorePatterns property on your Jest configuration, example below:

// jest.config.js
module.exports = {
    transformIgnorePatterns: ["/node_modules/(?!(svelte-typewriter)/)"]
}

More details on #73

Contributing

  1. Fork it
  2. Create your feature branch: git checkout -b fix/my-new-bug-fix
  3. Preview your changes by running the dev script on package.json
  4. Commit your changes: git commit -am 'fix: solve some issue'
  5. Push to the branch: git push --set-upstream origin fix/my-new-bug-fix
  6. Submit a pull request
3.2.3

4 months ago

3.1.8

7 months ago

3.2.2

6 months ago

3.2.1

6 months ago

3.2.0

6 months ago

3.3.0

6 months ago

3.1.7

7 months ago

3.1.6

1 year ago

3.1.5

1 year ago

3.1.3

2 years ago

3.1.2

2 years ago

3.1.1

2 years ago

3.1.0

2 years ago

3.1.4

1 year ago

3.0.0-alpha.14

2 years ago

3.0.0-alpha.13

2 years ago

3.0.0-alpha.16

2 years ago

3.0.0-alpha.15

2 years ago

3.0.0-alpha.18

2 years ago

3.0.0-alpha.17

2 years ago

3.0.0-alpha.19

2 years ago

3.0.0-alpha.12

2 years ago

3.0.4

2 years ago

3.0.3

2 years ago

3.0.2

2 years ago

3.0.1

2 years ago

3.0.0-alpha.20

2 years ago

3.0.0-beta.1

2 years ago

3.0.0-beta.0

2 years ago

3.0.0-alpha.7

2 years ago

3.0.0-alpha.6

2 years ago

3.0.0-alpha.9

2 years ago

3.0.0-alpha.8

2 years ago

3.0.0-alpha.10

2 years ago

3.0.0-alpha.11

2 years ago

3.0.0-alpha.3

3 years ago

3.0.0-alpha.2

3 years ago

3.0.0-alpha.5

2 years ago

3.0.0-alpha.4

2 years ago

3.0.0-alpha.1

3 years ago

3.0.0-alpha.0

3 years ago

2.4.5

3 years ago

2.4.4

3 years ago

2.4.3

3 years ago

2.4.2

3 years ago

2.4.1

3 years ago

2.4.0

3 years ago

2.3.2

3 years ago

2.3.1

4 years ago

2.3.0

4 years ago

2.2.0

4 years ago

2.1.17

4 years ago

2.1.16

4 years ago

2.1.15

4 years ago

2.1.14

4 years ago

2.1.13

4 years ago

3.0.0

4 years ago

2.1.12

4 years ago

2.1.11

4 years ago

2.1.10

4 years ago

2.1.9

4 years ago

2.1.6

4 years ago

2.1.8

4 years ago

2.1.7

4 years ago

2.1.5

4 years ago

2.1.4

4 years ago

2.1.3

4 years ago

2.1.2

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.5.5

4 years ago

1.5.4

4 years ago

1.5.3

4 years ago

1.5.2

4 years ago

1.5.1

4 years ago

1.4.2

4 years ago

1.5.0

4 years ago

1.4.1

4 years ago

1.3.4

4 years ago

1.4.0

4 years ago

1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago