TinyTornado renders animated tornadoes in a web browser.
npm install tinytornadoTinyTornado renders animated tornadoes in a web browser using JavaScript, CSS and the DOM. It also makes use of both FloraJS and Bit-Shadow Machine.
##Install
Use the standalone version and reference the css and js files from your document.
TinyTornado creates two types of tornadoes, funnels and vortices. Use the corresponding css file when creating your tornado. For example, the code below sets up a funnel.
```
...
This code sets up a vortex.
``
...
To include TinyTornado as a component in your project, use the node module.
``
npm install tinytornado --save
##Usage
TinyTornado uses four components to create a tornado, a base, debris, spine and shell. Simply create all four and pass them to the tornado's runner to start the animation.
Notice we're also defining a view for the tornado by passing a <div> to the Runner. The following code creates a funnel.
``
...

The following code creates a Vortex.
`
...