Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1.  
  2. var canvas = document.querySelector('canvas');
  3. canvas.width = window.innerWidth;
  4. canvas.height = window.innerHeight;
  5.  
  6. var c = canvas.getContext('2d');
  7.  
  8.  
  9. c.beginPath();
  10. c.arc(200, 200, 30, 0, Math.PI * 2, false);
  11. c.strokeStyle = 'blue';

  12. c.stroke();
  13.  
  14. function animate() {
  15. requestAnimationFrame(animate);
  16. console.log('hallo');
  17. }
  18.  
  19. console.log('hallo');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement