Skip to content

Instantly share code, notes, and snippets.

@aapzu
Created October 24, 2017 14:34
Show Gist options
  • Save aapzu/e8cd1dd63153942d8cb37ae2067ae551 to your computer and use it in GitHub Desktop.
Save aapzu/e8cd1dd63153942d8cb37ae2067ae551 to your computer and use it in GitHub Desktop.
<html>
<heAD>
</HEAD>
<body>
<p>sdflkasdjföaslfkjasföl</p>
<script>
setInterval(() => {
document.querySelector('p').style.color = 'red'
}, 2000)
setTimeout(() => {
setInterval(() => {
document.querySelector('p').style.color = 'blue'
}, 2000)
}, 1000)
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment