Glitched Writer
What it is:
Glitched, text-writing npm module, with highly customizable settings to get the effect You're looking for. Works for both web and node.js applications.
Features:
-
Writes your text, by glitching or spelling it out.
-
Highly customizable behavior. Set of options will help you achieve the effect you desire.
-
Can be attached to a HTML Element for automatic text-displaying.
-
Callback functions for every step and finish.
-
Events gw-finished and gw-step are dispatched on the HTML Element.
-
For styling purposes, while writing: attatches gw-writing class to the HTML Element and data-gw-string attribute with current string state.
-
Written in Typescript.
Installation
Download package through npm.
npm i glitched-writer
Then import GlitchedWriter class in the JavaScript file.
import GlitchedWriter from 'glitched-writer'
Or use the CDN and attach this script link to your html document.
<script src="https://cdn.jsdelivr.net/npm/glitched-writer@2.0.6/lib/index.min.js"></script>
Usage:
Creating Class Instance
Creating writer class instance:
const Writer = new GlitchedWriter(htmlElement, options, onStepCallback, onFinishCallback)
const Writer = new GlitchedWriter(htmlElement, {
interval: [10, 70],
oneAtATime: true
})
const Writer = new GlitchedWriter(htmlElement, undefined, (string, writerData) => {
console.log(`Current string: ${string}`)
console.log('All the class data:', writerData)
})
import { createGlitchedWriter } from 'glitched-writer'
const Writer = createGlitchedWriter(htmlElement, ...)
Writing
Writing stuff and waiting with async / await.
import { wait } from 'glitched-writer'
const res = await Writer.write('Welcome')
console.log(`Finished writing: ${res.string}`)
console.log('All the writer data:', res)
await wait(1200)
await Writer.write('...to Glitch City!')
Text Input
Don't be afraid to call write method on top of each oder.
Newer will stop the ongoing one.
inputEl.addEventListener('input', () => {
Writer.write(inputEl.value)
})
Pausing & Playing
Writer.write('Some very cool header.').then(({ status, message }) => {
console.log(`${status}: ${message}`)
})
setTimeout(() => {
Writer.pause()
}, 1000)
setTimeout(async () => {
await Writer.play()
console.log(Writer.string)
}, 2000)
One-Time-Use
For quick one-time writing.
import { glitchWrite } from 'glitched-writer'
glitchWrite('Write this and DISAPER!', htmlElement, options, ...)
Listening For Events
textHtmlElement.addEventListener('gw_finished', e =>
console.log('finished writing:', e.detail.string),
)
textHtmlElement.addEventListener('gw_step', e =>
console.log('current step:', e.detail.string),
)
Writing HTML
New (experimental & potentially dangerous) config option let's you write text with html tags in it.
const Writer = new GlitchedWriter(htmlElement, { html: true })
Writer.write('<b>Be sure to click <a href="...">this!</a></b>')
Available imports
List of all things that can be imported from glitched-writer module.
import GlitchedWriter, {
ConstructorOptions,
Callback,
WriterDataResponse,
createGlitchedWriter,
glitchWrite,
presets,
glyphs,
wait,
} from 'glitched-writer'
Presets
To use one of the available presets, You can simply write it's name when creating writer, in the place of options.
Available presets as for now:
- default - It is loaded automatically, ant it is the one from the GIF on top.
- nier - Imitating the way text was appearing in the NieR: Automata's UI.
- typewriter - One letter at a time, only slightly glitched.
- terminal - Imitating being typed by a machine.
- zalgo - Inspired by the "zalgo" or "cursed text", Ghost characters mostly includes the unicode combining characters, which makes the text glitch vertically.
new GlitchedWriter(htmlElement, 'nier')
Importing preset objects
You can import the option object of mentioned presets and tweak them, as well as some glyph sets.
import { presets, glyphs } from 'glitched-writer'
new GlitchedWriter(htmlElement, presets.typewriter)
Customizing options
Types and defaults:
{
steps?: RangeOrNumber,
interval?: RangeOrNumber,
initialDelay?: RangeOrNumber,
changeChance?: RangeOrNumber,
ghostChance?: RangeOrNumber,
maxGhosts?: number,
glyphs?: string | string[] | Set<string>,
glyphsFromString?: boolean
startFrom?: 'matching' | 'previous' | 'erase',
oneAtATime?: boolean,
html?: boolean,
fillSpace?: boolean
}
type RangeOrNumber = [number, number] | number
Options Description
Range values will result in random values for each step for every letter.
Ghost are letters that gets rendered in the time of writing, but are removed to reach goal string.
- steps - Number of minimum steps it takes one letter to reach it's goal one. Set to 0 if you want them to change to right letter in one step.
- interval - Interval between each step, for every letter.
- initialDelay - first delay each letter must wait before it starts working
- changeChance - Percentage Chance for letter to change to something else (from glyph charset)
- ghostChance - Percentage Chance for ghost letter to appear
- maxGhosts - Maximal number of ghosts to occur
- int - (eg. 15) -> this will be the limit.
- float - (eg. 0.25) -> Limit = maxGhosts * goalString.length
- glyphs - A set of characters that can appear as ghosts or letters can change into them
- glyphsFromString - If you want to add letters from written string to the glyph charset
- startFrom - Decides on witch algorithm to use.
- 'matching' - Will scan starting and goal string for matching characters and will try to build character map from that.
- 'previous' - Wont do any matching, just converts starting string into character map.
- 'erase' - First Erases entire string and then writes from blank space.
- oneAtATime - If writing should take place from left-to-right, letter-by-letter or normally: all-at-once.
- html - Potentially dangerous option. If true, written string will be injected as html, not text content. It provides advanced text formating with html tags and more. But be sure to not enable it on user-provided content.
- fillSpace - Normally if letter gets erased it actually gets replaced with space instead - to make words appear from and disappear into space, rather then sticking to the rest of the words. Set to false if you want to disable this.
Links: