add 'none'-transition (closes #159, #160)

master
Hakim El Hattab 2012-10-04 08:14:51 -04:00
parent 303be5be77
commit b0cc9fee45
1 changed files with 20 additions and 1 deletions

View File

@ -811,7 +811,7 @@ body {
/********************************************* /*********************************************
* TILE-FLIP TRANSITION * TILE-FLIP TRANSITION (CSS shader)
*********************************************/ *********************************************/
.reveal.tileflip .slides section.present { .reveal.tileflip .slides section.present {
@ -860,6 +860,25 @@ body {
} }
/*********************************************
* NO TRANSITION
*********************************************/
.reveal.none .slides section {
-webkit-transform: none;
-moz-transform: none;
-ms-transform: none;
-o-transform: none;
transform: none;
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
transition: none;
}
/********************************************* /*********************************************
* OVERVIEW * OVERVIEW
*********************************************/ *********************************************/