Emojify is a customizable emoji trail javascript library that follows your mouse cursor, embedding playfulness and personality into any webpage.
npm install open-emojify


index.html`
`html
`
#### 🚧 Specific Version
`html
`
Usage
Call the Emojify library in your Javascript. That's it 🎉.
`main.js`
`js
window.emojify = new Emojify({});
`
Customization
Emojify comes with options / variables that can easily be customized.
`js
window.emojify = new Emojify({
emojis: ['😂','😎','😍','😀'], // replaces default emojis with emojis within a string
random: true, // determines if emojis should be shown random or in order
duration: 500, // duration before hiding emojis
delay: 15, // delay between showing a new emoji
size: '48px', // font-size of emojis
zIndex: 9999, // z-index of emojis
});
``