9-rotate.html - bitreich-www - the bitreich www website generator | |
git clone git://bitreich.org/bitreich-www/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hh… | |
Log | |
Files | |
Refs | |
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> |