A 10 year old stop-motion animation artist teamed up with me to create a mini-game to pract...

栏目: IT技术 · 发布时间: 5年前

内容简介:A 10 year old stop-motion animation artist teamed up with me to create this mini-game to practice single digit multiplication or addition.Answer the five questions to help the pipe-cleaner guy in his quest for treasure!We are hoping to create more episodes

A 10 year old stop-motion animation artist teamed up with me to create this mini-game to practice single digit multiplication or addition.

Answer the five questions to help the pipe-cleaner guy in his quest for treasure!

We are hoping to create more episodes in future and would love to hear your feedback:send us an email.

You can play on top of this screen or check out the full screen version:

Addition orMultiplication

The program is very simple. One interesting thing about it is that it alternates between two HTML video elements - while one is being displayed, the other one is hidden and being loaded.

The video files are very small (about 200kB each), but they still could cause annoying buffering issues (delays) without this mechanism.

There is an HTML5 Canvas on top of the videos that is used to display questions, answers and messages.

The entire code is below. Here's a quick overview:

[1-15] HTML setup. The page consists of two video controls and a Canvas. They're all located in the upper left corner of the screen. The Canvas is on top of the videos.

[17-37] Declare variables.

[39-46] This function clears the Canvas when the countdown counter reaches the value of 1. This is used to clear the correct answer after a delay.

[48-62] Randomize a new question plus three incorrect answers, calculate the correct answer using the mathematical operator (+/*).

[64-77] Display the question in a comic speech bubble (67) and the four boxes with answers on the Canvas.

[79-104] When the current video finishes playing:

- switch out the videos (hide the current one and display the buffer)

- load the next video file in the buffer video(85-86)

- the current video becomes the buffer, and vice versa (88-94)

- randomize and display a new question (95-97)

- If all videos completed, display the victory message (98-103)

[106-125] Resize the videos and the Canvas to full screen. This is mainly needed if the player rotates their mobile device (horizontal/vertical). I could not use the native fullscreen capability as in some cases there is no way to get rid of the video controls.

[127-137] Reset all variables when a new game starts and show the red 'play' button (135).

[139-142] Start the first game.

[144-175] When the player clicks:

[146-150] if it's the beginning of the game, play the first video.

[151-152] if there is a question of the screen, get the Y coordinate of the click and:

[153-160] if the correct answer was clicked, play the next video and the 'correct' bleep. Clear the question and the boxes, redraw the correct answer in white. Start the countdown to clearing the correct answer (159).

[161-165] otherwise play the 'incorrect' bleep and redraw the incorrect answer in red.

[168-174] if this was the last video, restart the game.

[177-179] set up event listeners.

[180] kick off the timer mechanism.

-->

Check out these programming tutorials:


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Java与模式

Java与模式

阎宏 编著 / 电子工业出版社 / 2002-10 / 88.00元

《Java与模式》是一本讲解设计原则以及最为常见的设计模式的实用教材,目的是为了工作繁忙的Java系统设计师提供一个快速而准确的设计原则和设计模式的辅导。全书分为55章,第一个章节讲解一个编编程模式,说明此模式的用意、结构,以及这一模式适合于什么样的情况等。每一个章节都附有多个例子和练习题,研习这些例子、完成这些练习题可以帮助读者更好地理解所讲的内容。大多数的章节都是相对独立的,读者可以从任何一章......一起来看看 《Java与模式》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

SHA 加密
SHA 加密

SHA 加密工具

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器