Change speed of fragments transition
The default reveal.js transition speed for fragments is a little too fast in my opinion. It would be interesting the possibility to customize the transition duration within the fragments interface.
For now, pro users can change the speed by adding this to the beginning of your CSS:
.slides section .fragment {
opacity: 0;
visibility: hidden;
transition: all .6s ease; }
.slides section .fragment.visible {
opacity: 1;
visibility: inherit; }
6
votes

-
Paul Adams commented
Totally agree. I would like to see this as an option in Reveal.js, similar to data-auto-animate-duration