项目作者: JAE-S

项目描述 :
Test your math skills with this mobile friendly Crystal Collector Game!
高级语言: CSS
项目地址: git://github.com/JAE-S/Crystal-Collector.git
创建时间: 2019-07-19T17:04:41Z
项目社区:https://github.com/JAE-S/Crystal-Collector

开源协议:

下载


Welcome to Crystal Collector

Test your math skills by collecting crystals to match a target value with this mobile friendly game.


Table of Contents


Design Process


Technologies

Design Tools:

  • Adobe Illustrator: Graphic assets
  • Adobe Photoshop: Graphic assets & gifs
  • Adobe After Effects: Background video

Development Tools:

  • Framework: Bootstrap
  • HTML
  • CSS
  • Javascript

Instructions

  1. 1. When the game begins you will be given a magic number between 19 - 120.
  2. 2. You will also receive four crystals, each with its own hidden value.
  3. 3. Try to match the magic number by clicking the crystals. This will reveal the crystal's value and add it to your total.
  4. 4. If your total is the same as the magic number you will win that round.
  5. 5. If your total is not the same as the magic number you will lose that round.
  6. 6. After the game is over you will be given the option to play again. Each additional round will assign new values to the magic number and crystals.

Features And Functionality


File Architecture

  1. Crystal Collector
  2. ├── assets
  3. ├── css
  4. ├── reset.css
  5. └── style.css
  6. ├── images
  7. ├── background
  8. ├── active_game_background.mp4
  9. ├── crystals.mp4
  10. ├── micro_carbon_@2X.png
  11. ├── micro_carbon.png
  12. └── readme.txt
  13. ├── click_crystals
  14. ├── crystal_1.png
  15. ├── crystal_2.png
  16. ├── crystal_3.png
  17. └── crystal_4.png
  18. └── game_over
  19. ├── loser
  20. └── game_over.png
  21. ├── winner
  22. ├── stills
  23. ├── crystal_winner_1.png
  24. ├── crystal_winner_2.png
  25. ├── crystal_winner_3.png
  26. ├── crystal_winner_4.png
  27. └── crystal_winner_5.png
  28. ├── crystals_winner_gif_2.mp4
  29. └── crystals_winner_gif_3.mp4
  30. └── crystal_winner.mp4
  31. ├── javascript
  32. └── game.js
  33. └── sound_effects
  34. ├── button_click.mp3
  35. ├── crystal_click.mp3
  36. ├── lost_game.mp3
  37. └── won_game.mp3
  38. ├── index.html
  39. └── README.md

Back To Top