This is an impressive animation of a lotus power.
Finding a good book to master HTML5 can be very challenging: there are so many around - most with eye-catching titles and very complex substance.
Therefore,
Vivax Solutions strongly recommends
Core HTML5 Canvas for those who really want to delve into HTML5.
Please click the image to access
Amazon:
<script>
var canvas = document.getElementById('Canvas_One');
var context = canvas.getContext('2d');
var i, j = 0.01, t = 0;
var col = new Array('green', 'blue', 'red', 'cyan', 'magenta', 'yellow', 'white');
function timing() {
context.clearRect(0, 0, 400, 400);
for (i = 0; i < 2 * Math.PI; i = i + 0.01) {
var x = 200 + (100 * Math.cos(3 * i) + 50 * Math.cos((70) * i / 5));
var y = 200 + (100 * Math.sin(3 * i) + 50 * Math.sin((70) * i / 5));
t = t + 1;
if (t > 6) { t = 0; }
context.beginPath();
context.moveTo(200, 200);
context.arc(x, y, 2, 0, 2 * Math.PI);
context.fillStyle = col[t];
context.fill();
}
}
window.setInterval('timing()', 10);
</script>