February 10th 2018
And at the Web Development Bootcamp I started coding a patatap lookaline, based on the patatap.com website where pressing a key cause an animation and sound on the screen. It is really cool and we learned about paper.js, a library with animations that we can use in our code
script type="text/javascript" src="paper-full.js"script
script type="text/paperscript" canvas="myCanvas"
Is what we put in at the top, and
canvas id="myCanvas" resize canvas
Is what we place at the bottom of the page.
There are loads of methods in this library which can be used to make the page very interactive like:
var randomPoint = Point.random();
I am looking forward to doing some more coding.
Cheers!