Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/damiencorpataux/jquery-smokeping-zoom

jQuery javascript plugin for zooming smokeping graphs, standalone.
https://github.com/damiencorpataux/jquery-smokeping-zoom

Last synced: 20 days ago
JSON representation

jQuery javascript plugin for zooming smokeping graphs, standalone.

Awesome Lists containing this project

README

        

jquery-smokeping-zoom
=====================

jQuery javascript plugin for zooming graphs, standalone.

**Demo:** http://damiencorpataux.github.io/jquery-smokeping-zoom/ (hover the graphs and use your mouse-wheel)

--

**Currently available connectors:**
* smokeping
* cricket
* plain

```
This plugin is currently work-in-progress, sorry for bugs and glitches, issues and patches welcome.
```

### Usage example

Simply load libraries and apply the plugin to the desired graphs img tags, flavoured with plguin options.

```html

$( document ).ready(function() {
$('.smoke-graph').zoomy({connector:'smokeping', zoom_factor:6});
$('.cricket-graph').zoomy({connector:'cricket', 'maxrange':33053184});
$('.plain-graph').zoomy({connector:'plain'});
});

```