Skip to content

Instantly share code, notes, and snippets.

@stephenscaff
Created December 17, 2019 17:45
Show Gist options
  • Select an option

  • Save stephenscaff/9be97cb2cdc7a0e10b3c8c2416a4ba93 to your computer and use it in GitHub Desktop.

Select an option

Save stephenscaff/9be97cb2cdc7a0e10b3c8c2416a4ba93 to your computer and use it in GitHub Desktop.
/**
* Emoji Rotator
*/
const Emoji = (() => {
const emojis = ["๐Ÿ˜ฎ", "๐Ÿ˜€", "๐Ÿ˜", "๐Ÿ˜", "๐Ÿ˜‘", "๐Ÿ˜ฌ"]
const time = 200;
setInterval(_=>{
document.querySelector('.js-emoji').innerHTML =[
...emojis
][new Date%emojis.length]
},200)
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment