Skip to content

Instantly share code, notes, and snippets.

@dariushoule
Created January 14, 2016 18:21
Show Gist options
  • Save dariushoule/e00d2e3fd1c4bb93d798 to your computer and use it in GitHub Desktop.
Save dariushoule/e00d2e3fd1c4bb93d798 to your computer and use it in GitHub Desktop.
googlespinner
var s=document.createElement("style"),css="@keyframes spin {0% {transform: rotate(0deg);} 100% {transform: rotate(360deg);}}";s.type="text/css",s.styleSheet?s.styleSheet.cssText=css:s.appendChild(document.createTextNode(css)),document.body.appendChild(s),document.getElementById("hplogo").setAttribute("style","@keyframes spin {0% {transform: rotate(0deg);} 100% {transform: rotate(360deg);}};animation: spin 1s infinite linear;");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment