9-rotate.html - bitreich-www - the bitreich www website generator DIR Log DIR Files DIR Refs DIR Tags --- 9-rotate.html (236B) --- 1 <script> 2 3 degrotate = 25; 4 setInterval(function() { 5 degrotate += 0.05; 6 if (degrotate > 350) { 7 i = 0; 8 } 9 document.body.style.transform = "rotate("+degrotate+"deg)"; 10 document.body.style.transformOrigin = "center"; 11 }, 20); 12 13 </script>