xkrsz / wordsmith.js

JS plugin for writing things. Written in vanilla JavaScript.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

wordsmith.js

JS plugin for writing things. Written in vanilla JavaScript.

Usage

const ws = new Wordsmith({
    tag: document.getElementById('text'),
    typingSpeed: 1.5
})
ws.type(`
This is a text that will be written smoothly inside a specified element.
<pausefor1000>
<br>
This will be written one second later.
`)

To enable animated cursor add this css

.wordsmith:after {
    content: '|';
    background-color: #fff;
    animation: .5s linear infinite alternate blink
}

@keyframes blink {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

About

JS plugin for writing things. Written in vanilla JavaScript.


Languages

Language:JavaScript 100.0%