diff options
author | Mario Wolff | 2019-01-15 13:13:19 +0100 |
---|---|---|
committer | Mario Wolff | 2019-01-15 13:13:19 +0100 |
commit | abee356e42bd27a06db3f1308fd7b751de646102 (patch) | |
tree | 201ad123a98d3382db73b5628973e63183e9f18f /README.md | |
parent | 0b3e7839ebf4ed8b6c180aca0abafa28c67aee6d (diff) |
emmit resize event if scale changed
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -958,6 +958,14 @@ Limitations: - Only direct descendants of a slide section can be stretched - Only one descendant per slide section can be stretched +### Resize Event + +When reveal.js changes the scale of the slides it fires an resize event. You can subscribe to the event to resize your elements accordingly. + +```javascript +Reveal.addEventListener( 'overviewshown', function( event ) { /* console.log(event.scale,event.oldscale,event.size); */ } ); +``` + ### postMessage API The framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2: |