use 'url()'-free path when specifying parallax image, refactor so that parallax is applied to background class, remove unused attributes #595

This commit is contained in:
Hakim El Hattab
2013-09-15 17:45:27 -04:00
parent 36061b43ba
commit 86216ac645
6 changed files with 30 additions and 30 deletions

View File

@ -1406,7 +1406,7 @@ body {
* PARALLAX BACKGROUND
*********************************************/
.reveal[data-parallax-background] {
.reveal.has-parallax-background .backgrounds {
-webkit-transition: all 0.8s ease;
-moz-transition: all 0.8s ease;
-ms-transition: all 0.8s ease;
@ -1414,13 +1414,13 @@ body {
}
/* Global transition speed settings */
.reveal[data-parallax-background][data-transition-speed="fast"] {
.reveal.has-parallax-background[data-transition-speed="fast"] .backgrounds {
-webkit-transition-duration: 400ms;
-moz-transition-duration: 400ms;
-ms-transition-duration: 400ms;
transition-duration: 400ms;
}
.reveal[data-parallax-background][data-transition-speed="slow"] {
.reveal.has-parallax-background[data-transition-speed="slow"] .backgrounds {
-webkit-transition-duration: 1200ms;
-moz-transition-duration: 1200ms;
-ms-transition-duration: 1200ms;

2
css/reveal.min.css vendored

File diff suppressed because one or more lines are too long