-
-
Save luckylooke/4173b00e73309d6f2153f77cc542e17b to your computer and use it in GitHub Desktop.
Pure JavaScript spinner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Pure JS spinner</title> | |
<style> | |
#spinner { font-size: 6em; } | |
</style> | |
</head> | |
<body> | |
<div id="spinner"></div> | |
<script> | |
var chars = '┤┘┴└├┌┬┐'.split(''); | |
var chars = '⣾⣽⣻⢿⡿⣟⣯⣷'.split(''); | |
var chars = '⠁⠂⠄⡀⢀⠠⠐⠈'.split(''); | |
var chars = '▖▘▝▗'.split(''); | |
function spin() { | |
var char = chars.shift(); | |
document.querySelector('#spinner').innerHTML = char; | |
chars.push(char); | |
setTimeout(spin, 150); | |
} | |
spin(); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment