November 2011
Intermediate to advanced
348 pages
7h 2m
English
Have you ever seen microscopic life forms in a microscope and observed how they wiggle around? This recipe is inspired by the alien-like world of micro-organisms. In this recipe, we'll create 100 random microbes and let them loose in the canvas.

Follow these steps to create wiggling microbes moving inside the canvas:
Animation class:<head>
<script src="animation.js">
</script>getRandColor() function that returns a random color: <script> function getRandColor(){ var colors = ["red", "orange", "yellow", "green", "blue", "violet"]; return colors[Math.floor(Math.random() * colors.length)]; ...Read now
Unlock full access