An open API service indexing awesome lists of open source software.

https://github.com/imranhsayed/javascript-workshop

:fire: JavaScript Beginner to Advanced Workshop
https://github.com/imranhsayed/javascript-workshop

Last synced: 8 months ago
JSON representation

:fire: JavaScript Beginner to Advanced Workshop

Awesome Lists containing this project

README

          

# JavaScript Workshop :fire:

JavaScript Concepts.

## JavaScript game

### [LIVE DEMO](https://codeytek.com/javascript-workshop/)
![](games-demo.gif)

## Optimum game setting for max fun.

```javascript
this.ballCount = 1000; // No of balls in the game.
this.dropBallSpeed = 0.5; // At what speed the balls should drop.
this.dropBallFrequency = 500; // At what intervals next ball should drop after the previous one.
this.shootEvent = 'mouseover'; // can choose what you like, for tutorial 'click' is used, but mouseover is better.
```