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

https://github.com/markusfisch/zoomgrid

ZoomGrid is a two-dimensional accordion menu inside a fixed rectangle
https://github.com/markusfisch/zoomgrid

javascript-library

Last synced: 4 months ago
JSON representation

ZoomGrid is a two-dimensional accordion menu inside a fixed rectangle

Awesome Lists containing this project

README

          

ZoomGrid
========

ZoomGrid is a grid which can zoom its cells. In other words, it's a
two-dimensional accordion menu inside a fixed rectangle.

How to use
----------

Copy ZoomGrid.js (along with any optional extension) into your web folder
and add a corresponding <script/> tag for each file to the
<head/> element of your page:


Then invoke the grid:

var z = new ZoomGrid(
{ container: document.getElementById( "Contents" ) } );

In this case, you should have a <div id="Contents"/> somewhere on your
page, of course. After that, you need to activate the extensions you want
to use. For example, to activate the transparency extension do:

z.addTransparency();

Some extensions may require attributes. Just look at the corresponding
source file.