Canvas Animated Positioning Using HTML 5

Introduction

 
In this section, the shape's position changes and then the layer is redrawn with each animation frame using the onFrame() method. The onFrame() method is passed a frame object which contains two properties of interest. The number of milliseconds that the animation has been running is in frame.time.
 
Here we will use some JavaScript and some styles along with HTML code. Just go through the steps to see how to create this application. Let's see how the CanvasAnimatedPostion application can be created. To do so use the following steps.
 
Step 1 : Open a HTML editor or Visual Studio.
 
sd.gif
 
Open File menu ->select new ->Choose Website:
 
0000.jpg
 
This is where we will create an HTML5 application.    
  • Go to Solution Explorer
  • Right-click on the Application name
  • Select Add-->add new item
  • Now in the window that opens, select an HTML page or new Webform
  • Rename it to animatedpostioning.aspx
at2.gif
 
Step 2: In this section, we will create the style for the media and create the .css on the media screen. Put the given script in the Head section of the HTML or between the <head>--</head> tags. Here the CSS is used for design purposes.
 
CSS Script
  1. <style>  
  2. body  
  3. {  
  4.   margin0px;  
  5.   padding0px;  
  6. }  
  7. Canvas  
  8. {  
  9.    border2px solid #009999;  
  10.    margin-top50px;  
  11.    margin-left50px;  
  12.    background-color:#9C9898 ;  
  13.    box-shadow: 5px 5px 8px #222;  
  14.  }  
  15. .title  
  16. {  
  17.    text-aligncenter;  
  18.    font-family: Segoe UI Light, ArialHelvetica;  
  19.    font-size2.2em;  
  20.    margin1em;  
  21. }  
  22. .info  
  23. {  
  24.    text-aligncenter;  
  25.    font-family: Segoe UI Light, ArialHelvetica;  
  26.    font-size1.2em;  
  27.    margin0.25em;  
  28. }  
  29. </style> 
Step 3 : In this part we need to work on some JavaScript. To fully understand how JavaScript works, download the attached .rar file and run the CanvasAnimatedPostion application.
 
The whole JavaScript looks as in the following.
  1. <script>  
  2.         window.onload = function ()  
  3.         {  
  4.             var stage = new Kinetic.Stage({  
  5.                 container: "container",  
  6.                 width: 578,  
  7.                 height: 200  
  8.            });  
  9.             var layer = new Kinetic.Layer();  
  10.             var hexagon = new Kinetic.RegularPolygon({  
  11.                x: stage.width / 2,  
  12.                y: stage.height / 2,  
  13.                sides: 6,  
  14.                 radius: 70,  
  15.                 fill: "yellow",  
  16.                 stroke: "black",  
  17.                 strokeWidth: 4  
  18.             });  
  19.              layer.add(hexagon);  
  20.             stage.add(layer);   
  21.             var amplitude = 150;  
  22.             var period = 2000;  
  23.             // in ms  
  24.             var centerX = stage.width / 2;  
  25.             stage.onFrame(function (frame) {  
  26.                 hexagon.x = amplitude * Math.sin(frame.time * 2 * Math.PI / period) + centerX;  
  27.                 layer.draw();  
  28.             });  
  29.              stage.start();  
  30.         };  
  31. </script> 
Step 4: In this section, we are going to become familiar with the body part of HTML scripting. Replace this script from the body section of the animatedpostioning.aspx page. Here we pass a Canvas in the canvas tag. 
  1. <body style="background-color: #33CCFF">  
  2.     <center>  
  3.         <h1>  
  4.             Canvas Animated Postioning  
  5.         </h1>  
  6.     </center>  
  7.     <hr />  
  8.     <div id="container">  
  9.     </div>  
  10. </body> 
Step 5 : The complete code for the CanvasAnimatedPostion application:
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="animatedpostioning.aspx.cs" Inherits="CanvasAnimatedPostion._Default" %>  
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">  
  3. <html xmlns="http://www.w3.org/1999/xhtml">  
  4. <head runat="server">  
  5.     <style>  
  6.     </style>  
  7.     <script src="jscript.js"></script>  
  8.     <script>  
  9.     </script>  
  10. </head>  
  11. <body style="background-color: #33CCFF">  
  12.     <center>  
  13.         <h1>  
  14.             Canvas Animated Postioning  
  15.         </h1>  
  16.     </center>  
  17.     <hr />  
  18.     <div id="container">  
  19.     </div>  
  20. </body>  
  21. </html> 
Step 6: Output Press F5
 
Note: For the accurate output of HTML5 applications, you must have the Google Chrome browser on your PC. You will see the shape's position and then redraw the layer with each animation frame using the onFrame() method, while the application is running in the browser.
 
at.gif
 
at1.gif
 
Here are some useful resources.