Skip to main content

SplitText

SplitText splits text within a container into individual lines, words, and letters.

Features:

  • Supports resizing, HTML content, and special symbols like emojis.
  • Handles multi-line breaks and non-breaking spaces.
  • Saves initial nodes and listeners for easy restoration.
  • Allows splitting into lines, words, or letters as needed.
note

Apply fontKerning: none to prevent layout shifts.

Example

Explore live examples in CodeSandbox:

With Letters

With HTML

With Lines Mask

Props

Static Props

Static properties are set during initialization and cannot be modified later.

NameDescriptionTypeDefault Value
containerThe text container where the text will be split.HTMLElement
lettersSpecifies whether the text should be split into individual letters.booleanfalse
linesSpecifies whether the text should be split into lines.booleanfalse
linesWrapperSpecifies whether to wrap each line in an additional container.booleanfalse
letterTagSpecifies whether to wrap each line in an additional container.string'span'
wordTagHTML tag to wrap each word.string'span'
lineTagHTML tag to wrap each line.string'span'
resizeDebounceThe debounce delay for the resize event in milliseconds.number0

Accessors

note

All Module's accessors are available in this class.

letters

Type: HTMLElement[]

Retrieves an array of letter elements.

lettersMeta

Type: ISplitTextLetterMeta[]

Retrieves an array of letters metadata.

ISplitTextLetterMeta Structure

interface ISplitTextLetterMeta {
element: HTMLElement;
}

lines

Type: HTMLElement[]

Retrieves an array of line elements.

linesMeta

Type: ISplitTextLineMeta[]

Retrieves an array of lines metadata.

ISplitTextLineMeta Structure

interface ISplitTextLineMeta {
element: HTMLElement;
words: ISplitTextWordMeta[];
wrapper?: HTMLElement;
}

words

Type: HTMLElement[]

Retrieves an array of word elements.

wordsMeta

Type: ISplitTextWordMeta[]

Retrieves an array of words metadata.

ISplitTextWordMeta Structure

interface ISplitTextWordMeta {
element: HTMLElement;
letters: ISplitTextLetterMeta[];
}

Methods

note

All Module's methods are available in this class.

split

Splits the text into letters, words, and optionally lines based on configuration.

instance.split();

Callbacks

note

All Module's callbacks are available in this class.

beforeSplit

Called before the text is split

const destruct = instance.on('beforeSplit', () => console.log('beforeSplit'));

// Cancel the callback
destruct();

split

Called after the text has been split.

const destruct = instance.on('split', () => console.log('split'));

// Cancel the callback
destruct();