Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/djsutherland/reveal.js-notes-pointer
Notes plugin for reveal.js with a "laser pointer"
https://github.com/djsutherland/reveal.js-notes-pointer
reveal-js reveal-plugin
Last synced: 1 day ago
JSON representation
Notes plugin for reveal.js with a "laser pointer"
- Host: GitHub
- URL: https://github.com/djsutherland/reveal.js-notes-pointer
- Owner: djsutherland
- License: other
- Created: 2019-02-01T19:29:17.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-21T17:30:31.000Z (over 4 years ago)
- Last Synced: 2024-04-25T19:00:51.716Z (7 months ago)
- Topics: reveal-js, reveal-plugin
- Language: HTML
- Homepage: https://www.npmjs.com/package/reveal.js-notes-pointer
- Size: 27.3 KB
- Stars: 7
- Watchers: 2
- Forks: 4
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
A fork of [the default reveal.js notes plugin](https://github.com/hakimel/reveal.js/tree/master/plugin/notes) where you can use your mouse to point, as if with a laser pointer, in the notes preview window and have it show up in the presentation window.
Usage: `npm install reveal.js-notes-pointer`, and then
```
Reveal.initialize({
// ...// Optional configuration, leave anything out for defaults
notes_pointer: {
pointer: {
size: 15, // in pixels (scaled like the rest of reveal.js)
color: 'rgba(255, 0, 0, 0.8)', // something valid for css background-color
key: 'A'
},
notes: {
key: 'S'
}
},dependencies: [
// ...{src: 'node_modules/reveal.js-notes-pointer/notes-pointer.js', async: True}
// async is optional
]
});
```Some inspiration from [`caiofcm/plugin-revealjs-mouse-pointer`](https://github.com/caiofcm/plugin-revealjs-mouse-pointer).