diff options
Diffstat (limited to 'crocoite/data')
-rw-r--r-- | crocoite/data/scroll.js | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/crocoite/data/scroll.js b/crocoite/data/scroll.js new file mode 100644 index 0000000..cf060fc --- /dev/null +++ b/crocoite/data/scroll.js @@ -0,0 +1,10 @@ +(function(){ +function scroll (event) { + window.scrollBy (0, window.innerHeight/2); + return true; +} +function onload (event) { + window.setInterval (scroll, 200); +} +document.addEventListener("DOMContentLoaded", onload); +}()); |