Creating a Rotating Shape Using Javascript

Language
In this chapter, I am going to teach you how to make a rotating image or shape using javascript. Download the source code and follow the directions below. You can use this to your simple projects.

DIRECTIONS

HTML CODE

  1. <!DOCTYPE html>
  2. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  3. canvas {
  4.     border:1px solid #d3d3d3;
  5.     background-color: #f1f1f1;
  6. }
  7. </head>
  8. <body onload="startGame()">
  9.  
  10. </body>
  11. </html>
  1. <script>
  2.  
  3. var myGamePiece;
  4.  
  5. function startGame() {
  6.     myGamePiece = new component(30, 30, "red", 80, 75);
  7.     myGameArea.start();
  8. }
  9.  
  10. var myGameArea = {
  11.     canvas : document.createElement("canvas"),
  12.     start : function() {
  13.         this.canvas.width = 480;
  14.         this.canvas.height = 270;
  15.         this.context = this.canvas.getContext("2d");
  16.         document.body.insertBefore(this.canvas, document.body.childNodes[0]);
  17.         this.frameNo = 0;
  18.         this.interval = setInterval(updateGameArea, 20);
  19.     },
  20.     stop : function() {
  21.         clearInterval(this.interval);
  22.     },    
  23.     clear : function() {
  24.         this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
  25.     }
  26. }
  27.  
  28. function component(width, height, color, x, y) {
  29.     this.width = width;
  30.     this.height = height;
  31.     this.angle = 0;
  32.     this.x = x;
  33.     this.y = y;    
  34.     this.update = function() {
  35.         ctx = myGameArea.context;
  36.         ctx.save();
  37.         ctx.translate(this.x, this.y);        
  38.         ctx.rotate(this.angle);
  39.         ctx.fillStyle = color;
  40.         ctx.fillRect(this.width / -2, this.height / -2, this.width, this.height);        
  41.         ctx.restore();    
  42.     }
  43. }
  44.  
  45. function updateGameArea() {
  46.     myGameArea.clear();
  47.     myGamePiece.angle += 1 * Math.PI / 180;    
  48.     myGamePiece.update();
  49. }
  50.  
  51. </script>

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment