Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chatziko/reveal.js-visualization
https://github.com/chatziko/reveal.js-visualization
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/chatziko/reveal.js-visualization
- Owner: chatziko
- Created: 2020-01-18T21:22:11.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T05:43:58.000Z (almost 2 years ago)
- Last Synced: 2024-10-27T12:40:39.398Z (3 months ago)
- Language: JavaScript
- Size: 661 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reveal.js-visualization
This is a plugin that allows to use David Galles'
[visualization library](https://www.cs.usfca.edu/~galles/visualization/)
in a [reveal.js](https://github.com/hakimel/reveal.js/) presentation.
A demo is available [here](https://chatziko.github.io/reveal.js-visualization/).## Install
```
npm install
npx webpack
```
Then open `demo/index.html`.To use in your presentation copy `plugin/visualization/visualization.js` to your
presentation directory, and load it when initialization reveal.js:
```Reveal.initialize({
...
dependencies: [
{ src: 'plugin/visualization/visualization.js', async: true }
]
});```