Advertisement
Guest User

asdasd

a guest
Sep 25th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. #text {
  6. position: fixed;
  7. top: 0px;
  8. left: 0px;
  9. background-color: #f00;
  10. border-radius: 50%;
  11. width: 100px;
  12. height: 100px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17.  
  18. <div id="text">anal</div>
  19.  
  20. <script type="text/javascript">
  21.  
  22. var text = document.getElementById("text");
  23.  
  24. var pos = {
  25. x: 0,
  26. y: 0,
  27. xvel: 5,
  28. yvel: 0
  29. };
  30.  
  31. setInterval(function() {
  32. pos.yvel += 1;
  33.  
  34. pos.x += pos.xvel;
  35. pos.y += pos.yvel;
  36.  
  37. if(pos.y + 100 >= window.innerHeight) {
  38. pos.yvel *= -1;
  39. }
  40.  
  41. text.style.left = pos.x + "px";
  42. text.style.top = pos.y + "px";
  43.  
  44.  
  45.  
  46. text.style.top = y + "px";
  47. },50);
  48.  
  49. </script>
  50.  
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement