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
- Host: GitHub
- URL: https://github.com/markusfisch/zoomgrid
- Owner: markusfisch
- License: unlicense
- Created: 2010-12-12T19:45:31.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2019-10-19T17:55:52.000Z (almost 6 years ago)
- Last Synced: 2023-03-11T13:38:08.579Z (over 2 years ago)
- Topics: javascript-library
- Language: JavaScript
- Homepage: http://markusfisch.de/ZoomGrid
- Size: 33.2 KB
- Stars: 4
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.