9-rotate.html - bitreich-www - the bitreich www website generator
 (HTM) git clone git://bitreich.org/bitreich-www/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/bitreich-www/
 (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>