implement a fade transition

This commit is contained in:
Joel Brandt
2013-01-16 12:49:10 -08:00
parent feaced800c
commit 082e4ed168
6 changed files with 51 additions and 8 deletions

View File

@ -1046,6 +1046,36 @@ body {
);
}
/*********************************************
* FADE TRANSITION
*********************************************/
.reveal.fade .slides section,
.reveal.fade .slides>section>section {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-transition: opacity 0.5s;
-moz-transition: opacity 0.5s;
-ms-transition: opacity 0.5s;
-o-transition: opacity 0.5s;
transition: opacity 0.5s;
}
.reveal.fade.overview .slides section,
.reveal.fade.overview .slides>section>section,
.reveal.fade.exit-overview .slides section,
.reveal.fade.exit-overview .slides>section>section {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/*********************************************
* NO TRANSITION

2
css/reveal.min.css vendored

File diff suppressed because one or more lines are too long