1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-18 04:21:26 +02:00

zoom transition now uses zooming for vertical transitions, too

This commit is contained in:
Hakim El Hattab
2019-02-01 11:09:03 +01:00
parent 7867b77833
commit 2d57981261
2 changed files with 9 additions and 7 deletions

View File

@@ -627,6 +627,7 @@ $controlsArrowAngleActive: 36deg;
padding-top: 0;
padding-bottom: 0;
pointer-events: none;
height: 100%;
}
.reveal .slides>section.present,
@@ -801,10 +802,10 @@ $controlsArrowAngleActive: 36deg;
transform: scale(0.2);
}
@include transition-vertical-past(zoom) {
transform: translate(0, -150%);
transform: scale(16);
}
@include transition-vertical-future(zoom) {
transform: translate(0, 150%);
transform: scale(0.2);
}