Plugins for reveal.js 4.2 and higher
A plugin collection for reveal.js 4.2 and higher
New features
- Added
loadcontent
plugin - Plugins now work in strict mode
Breaking changes
- In
animate
plugin, external svgs must now be loaded withloadcontent
plugin. Thus,data-src
is no longer supported to load external svg files to be animated. To migrate old animations add theloadcontent
plugin and replace
<div data-animate data-src="graphics.svg">
<!-- External svg file to be animated will be added here -->
</div>
by
<div data-animate data-load="graphics.svg">
<!-- External svg file to be animated will be added here -->
</div>
- Removed deprecated config from
anything
plugin - Removed deprecated buttons from
chalkboard
plugin (usecustomcontrols
plugin instead) - Removed deprecated buttons from
questions
plugin (usecustomcontrols
plugin instead) - Removed
embed-tweet
plugin,loadcontent
plugin can be used instead - Seminar plugin now works with socket.io v4.6.1: Make sure to update seminar server and client library, e.g., by using
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/4.6.1/socket.io.js"></script>