Skip to content

Instantly share code, notes, and snippets.

@siberex
Last active August 29, 2015 14:01
Show Gist options
  • Select an option

  • Save siberex/8bd467802e8345867690 to your computer and use it in GitHub Desktop.

Select an option

Save siberex/8bd467802e8345867690 to your computer and use it in GitHub Desktop.
Simple text loading spinner (., .., ...). Replace 3 with whatever you want (as long as it equals power of two − 1 ^_^) to get more dots :-)
var tSpinnerState = 3|0;
setInterval(function() {
$(".tspinner").text(
new Array( (++tSpinnerState, tSpinnerState &= 3) + 1 ).join(".")
);
}, 275);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment