Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/argshook/arklides
A simple quiz engine written in Javascript
https://github.com/argshook/arklides
Last synced: about 20 hours ago
JSON representation
A simple quiz engine written in Javascript
- Host: GitHub
- URL: https://github.com/argshook/arklides
- Owner: argshook
- License: other
- Created: 2013-10-15T23:16:06.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2023-12-28T13:37:48.000Z (about 1 year ago)
- Last Synced: 2024-04-14T05:56:02.259Z (9 months ago)
- Language: CSS
- Homepage: sukalbami.lt/arklides
- Size: 547 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: license.txt
Awesome Lists containing this project
README
# Arklidės
A simple quiz engine written in JavaScript.
A friend of mine needed this.
## Features
1. questions with any amount of answers
2. questions might display images
3. player score
4. frenzy mode (multiplied scores when conditions are met)## Adding more questions
Add your own questions to `Game.questions` array like so:
[
"What is the answer to everything?", // The question
["'80s", "69", "42"], // an array of answers. Can be whatever amount of options
3, // integer illustrating the correct answer (note: NOT the index of an array, so it starts from 1!)
"image.jpg" // an image to display with the question (optional). Images should be hosted at /assets/images
]Without the comments:
["What is the answer to everything?", ["'80s", "69", "42"], 3, "image.jpg"],
["Another tricky question", ["Answer 1", "Answer 2", "Answer 3", "Answer 4"], 3, "anotherImage.jpg"],---
Currently in development