Animation "Square"

Square

by Angeli Schwartz

HTML

<div id="square"></div>

CSS

#square {
  margin: 100px;
  width: 100px;
  height: 100px;
  background: green;
}

JavaScript

var square =
    document.getElementById("square");
var angle = 0;

setInterval (function() {
	angle = (angle + 5) %360
  square.style.transform =
  "rotate(" + angle + "deg)"
}, 1000/6)