Advertisement
pahapoika91

move page

Dec 23rd, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. // Author: pahapoika91
  2. // Name: move page
  3. // Description: Moves the page a few pixels up and then down constantly
  4.  
  5. <script type="text/javascript">
  6. window.onload=function() {
  7. var move=document.getElementsByTagName("body")[0];
  8. setInterval(function() {
  9. move.style.marginTop=(move.style.marginTop=="4px")?"-4px":"4px";
  10. }, 5);
  11. }
  12. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement