WORKSHOP

make  Games  Puzzles   Apps     Art   and more with CODE

Workshops for the modern, simplified world of coding!

  • Make a Browser or Mobile Puzzle, Game, etc. with just one page of text
  • New HTML Canvas for Wondrous Free-form Interactive Features
  • Code the Canvas with ZIM using the Popular and Powerful JavaScript
  • ZIM designed for all ~ Absolute Beginner to Absolute Professional
  • Tutorials, Workshops and Lessons prepared by ZIM Founder, Dan Zen
  • Canadian New Media Awards Programmer and Educator of the Year


ZIM is a free JavaScript framework for making Interactive Media on the HTML Canvas with easy shapes, drag and drop, hit tests, components like buttons, sliders, dials and more powered by the robust CreateJS.
  • The Canvas is an HTML tag introduced in HTML 5
  • The Canvas is a picture (bitmap) that we can change with code (computer programming)
  • JavaScript gives us basic commands to draw on and update the Canvas
  • The CreateJS Library gives us the EaselJS module for working on Canvas
  • In HTML and JavaScript we have a Document Object Model (DOM) to access tags within tags
  • Similarly, EaselJS gives us a Bitmap Object Model (BOM) with a stage to view things on the Canvas
  • The BOM allows us to nest containers and make shapes, images and text, etc.
  • EaselJS also gives us events to capture interaction
  • ZIM works with CreateJS to bring us even more functionality often with one line of code
  • circle.drag(), circle.animate(), circle.hitTestRect(rectangle), etc.
  • ZIM also provides a set of components for features you make
  • zim.Button(), zim.Label(), zim.Slider(), zim.Dial(), etc.
  • ZIM also sets up a framework in which we can work - ZIM makes the Canvas and Stage
MORE BACKGROUND

Create an editing tool to make memes with graphics and text

Make a tool panel to handle all the interface needed to create a meme! Allow the user to upload pictures from their desktop or mobile with click or drag and drop. Let the user drag, resize and rotate the image with handy components. Add text and backing rectangles and adjust dimensions and position. Provide interface to change layers of the items and save the final meme!
You will need a computer of any sort like a PC or Mac. A text editor preferably with syntax coloring (Atom, NotePad++, Sublime, Brackets, DreamWeaver, etc.). And any modern browser such as Firefox, Chrome, IE, Edge or Safari. Requirements have never been so freely available!
GOAL
The goal of the workshop is to teach the core elements of the topic, including:

  • Create a draggable collapsible panel
  • Load images from the computer or device
  • Make Dials and Sliders to rotate and scale
  • Use a TextArea to receive input text
  • Use Steppers to enter dimensions
  • Sort items by layers and remove items
  • Save a final image to a new Browser window
STEPS
Here are a few TIPS when taking the workshop:
  1. Keep your font big so you can see punctuation better.
  2. Nest your code properly - indent any block of code between { }
  3. Get things working before building the next bit of code.
  4. Ask your instructor if there are problems - others have them too!
  1. Download the workshop ZIP FILE. The file contains:
    • A meme folder to put your code - includes an assets folder
    • A resources/docs folder with ZIM Docs (here are online DOCS)
    • A resources/libraries folder with ZIM and CreateJS
    • A resources/site folder with images for the steps page
    • A resources/zim folder with templates - matches ZIM ZIP from ZIM site
    • This steps.html page to get you set up for this workshop
    • NOTE: see the ZIM Site for up to date ZIM versions and templates
  2. Copy (not move) the fit.html page from the zim folder to the meme folder.
  3. Rename the fit.html page to meme.html - this is where we will work.
  4. Open the page in a text editor like Atom, NotePad++, Brackets, Sublime, etc.
  5. To open, right click and chose open with... or open the file through the editor.
  6. Change the title of the page to "ZIM Meme Workshop".
  7. Note in the template where we say "// put your code here".
  8. The code underneath is a sample button - have a look.
  9. Open the file in a browser see the button - okay, we are done with the button.
  10. Go back to the code (keep editor and browser open) and delete the button.
  11. Follow the teacher as they go through the workshop.
  12. Have a look at the RESOURCES below to help you code after this workshop.
RESOURCES