From 6d4e5a9b9ac2c722b87c8ffa6db558bd8aeac7e2 Mon Sep 17 00:00:00 2001 From: hakimel Date: Thu, 18 Dec 2014 09:46:31 -0800 Subject: [PATCH] Created Migrating to reveal.js 3.0.0 (markdown) --- Migrating-to-reveal.js-3.0.0.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Migrating-to-reveal.js-3.0.0.md diff --git a/Migrating-to-reveal.js-3.0.0.md b/Migrating-to-reveal.js-3.0.0.md new file mode 100644 index 0000000..712780c --- /dev/null +++ b/Migrating-to-reveal.js-3.0.0.md @@ -0,0 +1,23 @@ +This is a draft, 3.0.0 is not yet released. + +---- + +reveal.js 3.0.0 is structurally not dramatically different than the 2.X.X versions but there have been some changes worth pointing out. + +### New default theme +The original reveal.js theme has been replaced with a new theme called 'black'. The previous default theme is now called 'league'. To change back to the old default replace the following in index.html: +```html + +``` + +with + +```html + +``` + +### New default transition +A sliding transition replaces the previous 3D rotation effect. If you want to stick to the old transition you'll need to specify `transition: concave` when initializing reveal.js. + +### No more minifies files +reveal.min.js and reveal.min.css are no longer tracked in the repository, to generate them you'll need to have Grunt running locally. This is covered in the [readme](https://github.com/hakimel/reveal.js#full-setup). \ No newline at end of file