I’m going to be looking at if/else statements in this post, finding out what they do, how they are written and how they can be used to achieve certain outcomes, with a simple multi-path game example…
Learning JavaScript: Data types & operators
Data is what JavaScript uses to do anything and everything, so in this post I’m going to look at both primitive and composite data types and the operators that can be used to manipulate them.
Continue reading Learning JavaScript: Data types & operators
Learning JavaScript: Arrays
Next I’m going to look at arrays, which are composite data types. I’m going to look at how they work and how to add, replace or extract data from them, as well as nested arrays.
Learning JavaScript: For loops
Continuing on my mission to learn JavaScript, next I’m going to look at for loops to find out what they do and how they work.
Creating touch icons for a website
Touch icons can be thought of as bookmark icons for mobile devices and tablets. In this post I’ll be explaining where they appear and how to create them for a website…
Learning JavaScript: Functions
I’ve tried to understand how jQuery works in the past and have had little success, not actually knowing the basics of JavaScript. Time for me to bite the bullet and finally learn it! I’ll look at functions first…
Animation with CSS3: 2D transformations
In this post, I’ll continue on discovering what animations can be applied to HTML elements. I’ll be looking at 2D transformations; effects that move, rotate, skew, and scale elements.
Animation with CSS3: Simple transitions
CSS3 is exciting (well at least I think so :)), as it allows animations to be carried out on HTML elements to move them, change their colour and size, etc. In this post, I’ll be looking at the basics of how CSS3 transitions work, with a few examples along the way.