Skip to content

Instantly share code, notes, and snippets.

@hsleonis
Last active March 31, 2016 14:19
Show Gist options
  • Select an option

  • Save hsleonis/92bb4e14907b34d350675abe389545a2 to your computer and use it in GitHub Desktop.

Select an option

Save hsleonis/92bb4e14907b34d350675abe389545a2 to your computer and use it in GitHub Desktop.
Animated window title
var strTitle = document.title,
iIndex = 0;
function animateTitle(){
document.title= strTitle.substring(iIndex, iIndex + 145);
if(iIndex == strTitle.length-1){ iIndex = 0;}
else iIndex++;
setTimeout("animateTitle()",200);
}
animateTitle();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment