Skip to content

Instantly share code, notes, and snippets.

@knguye1999
Created January 25, 2021 20:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knguye1999/81e23758e8460052493bcb15c83e76ab to your computer and use it in GitHub Desktop.
Save knguye1999/81e23758e8460052493bcb15c83e76ab to your computer and use it in GitHub Desktop.
var el = document.getElementsByClassName('uw-patch')[0]
var currentRotation = 0
function spin(){
currentRotation++
var angle = 'rotate(' + currentRotation + 10 + 'deg)'
return el.style.transform= angle
}
setInterval(spin, 1000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment