From: Hakim El Hattab Date: Thu, 4 Oct 2012 12:14:51 +0000 (-0400) Subject: add 'none'-transition (closes #159, #160) X-Git-Tag: 2.1.0~58 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b0cc9fee4516e1aff267622b66e35201c5713a7f;p=reveal.js.git add 'none'-transition (closes #159, #160) --- diff --git a/css/reveal.css b/css/reveal.css index 8b33d59..f6392de 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -811,7 +811,7 @@ body { /********************************************* - * TILE-FLIP TRANSITION + * TILE-FLIP TRANSITION (CSS shader) *********************************************/ .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 *********************************************/