GitXplorerGitXplorer
g

html-quiz

public
112 stars
105 forks
7 issues

Commits

List of commits on branch master.
Unverified
46768f20f268423c15a54a07b7ece8872a203386

More small changes to the README

mmina86 committed 8 years ago
Unverified
e3879dbb406eae4f42e61576bf3534bf0934a38a

Small fixes to the README

mmina86 committed 8 years ago
Unverified
14a831cb2d2b481e9aa53f929c606d36e4940bf3

Stylistic changes mainly on the buttons

committed 9 years ago
Unverified
07b32ee07849c56ef2302391ce0f64364f9573ce

Convert GIF to PNG and optimise PNGs with zopflipng

mmina86 committed 9 years ago
Unverified
f8562d326b158b66461c55efe8b8111566059288

Update ALT of Watson's avatar image

mmina86 committed 11 years ago
Unverified
964866b8628bd4bfb960aa88145c782c5bc36380

Optimise PNG and GIF images

mmina86 committed 11 years ago

README

The README file for this repository.

Quiz script

Copyright 2013 Google Inc. Written by Michał Nazarewicz. This is not a Google product.

Overview

This is a simple quiz game which supports two players (or teams).

The idea is that teams get questions alternately and if the first one does not give correct answer, the other gets a chance. If neither answers correctly, that’s a tie. Another way to play is to have teams use buzzers of some kind to determine which gets the first try at the question. The way I’ve used the script is by having two asymmetric teams and the smaller one always getting the first chance.

Configuration

Configuration is done mostly by modifying the index.html by changing content of the TITLE element which determines the title text shown at the top of the page, and the #questions DIV which determines categories and list of questions.

Categories are defined by H2 elements and each question and answer is specified as two DIV or P elements. If question or answer is a single paragraph a lone P element suffices, otherwise a DIV is necessary.

Because of script’s limitations, at least two categories must be present. There is no limit on number of questions per category, but if some categories have fewer questions, a greyed out box will be displayed.

You can put almost any kind of HTML in either a question or an answer including images, embedded audio or video etc. Beware that you may need to add some styling for the elements to show up properly on the question board and when printing.

Secondly, there is a teams variable in the quiz.js file. It contains the names of the two teams that participate (and yes, there must be two teams). Finally, if you want to localise the script to a different language, you may change the value of strTie and strClose variables.

Usage

First of all, you should check print preview and print the web page as it will give you list of questions and answers for each category. If your questions are not too long you should get one-page per category printout. This may be helpful when hosting the game.

Controls of the game itself should be straightforward. As you open the site, a grid shows up with category names at the top and boxes indexed from 100 to 500 for each question in the category. Clicking on a box brings up a question board with the question, an “x” link in top right corner and three links at the bottom: “Team 1”, “Tie” and “Team 2” (the text depends on values of configuration variables in quiz.js file).

Pressing “x” hides the question board in case you’ve clicked it by mistake. “Team 1” and “Team 2” links will hide the question board, add grant appropriate amount of points to given team. The “Tie” button shows the answer to the question and replaces bottom links with a single “Close” link, which disables the question without adding points to either team. Disabling the questions greys corresponding box out and makes it impossible to display the question board again.

Lastly, team scores are displayed on the bottom. If there was any kind of mix-up and scores need to be altered it’s enough to click on the number and a prompt will show up where one can enter new score for given team.

And that’s about it, when it comes to usage – not very complicated.