Part One: Adobe Animate and API Do you want to fetch data from an API and use the data in your Adobe Animate CC creative work? Animate CC productions are made by JavaScript and HTML canvas. In theory getting data should work. Let’s try! OpenWeatherMap The data from OpenWeatherMap is only available when you have […]
Category: JavaScript
With JavaScript you can create dynamic solutions on the web. From microanimations to web apps that will fetch content via an API.
Jsconf in Reykjavik
My experiences on the first day of JsConf in Reykjavik 2018.
Radio Buttons and DOM
Gist: How to manipulate the DOM via event listeners.
Code for a JavaScript workshop for 2nd semester students.
JavaScript Intro Fiddle
Jquery first fiddle
Here is a very, very short Jquery introduction on Jsfiddle. After a while the document ready function becomes boring. However there is a shorthand version: $(function() { // … your code … });
On at JavaScript canvas the registration point is the top left corner. So in hit detection you have to calculate the x-position, the image width and height. In layout you should be able to figure out where to plage the images, and illustrations. Y = “up / down” X = “left / right” ( I […]