# ennagegrid_

> Create an interactive, multi-functional grid on your site

Latest version **1.0.0** (published 2019-06-29) · ISC license · 0 weekly downloads

## Install

```sh
npm install ennagegrid_
pnpm add ennagegrid_
yarn add ennagegrid_
bun add ennagegrid_
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; large bundle.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2019-06-29 |
| First published | 2019-06-29 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 20 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Andrey Nesterov |
| Maintainers | andrewtessa |

## Links

- npm: https://www.npmjs.com/package/ennagegrid_
- Repository: https://github.com/AndrewNes/EnnageGrid
- Issues: https://github.com/AndrewNes/EnnageGrid/issues
- npm.io page: https://npm.io/package/ennagegrid_

## Recent versions

- 1.0.0 (latest) — 2019-06-29

## README

# EnnageGrid - interactive visible grid for your site.
This is a framework for creating an interactive visible grid for your site.

#### Installation:
- include the file "ennageGrid.min.js"
```html
	<script type="text/javascript" src="ennageGrid.min.js"></script>
```
- create canvas with id "ennageGrid"
```html
	<canvas id='ennageGrid'></canvas>
```
- initialize the object "ennageStart"

```JavaScript
var ennageStart = {
			duration: 2000,
			timing: 'arc',
			colRow: 3,
			color: 'black',
			width: '1'
		};
```
#### About the object
Animation time:
```JavaScript
var ennageStart = {
			duration: 2000
		};
```
Animation type (the property will be improved in the second version):
```
'arc', 'archery', 'line', 'quadratic', 'cubed', 'fivePow', 'elasticity'
```
```JavaScript
var ennageStart = {
			timing: 'arc'
		};
```
The number of columns and rows of Your table:
```JavaScript
var ennageStart = {
			colRow: 3
		};
```
Line color:
```JavaScript
var ennageStart = {
			color: 'black'
		};
```
Line width:
```JavaScript
var ennageStart = {
			width: '1'
		};
```

---
_Source: https://npm.io/package/ennagegrid_ · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
