aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorLuke Karrys2013-11-29 10:57:26 -0700
committerLuke Karrys2013-11-29 11:17:18 -0700
commit0605ab13dfc525fa1498a53833b83a1ad1612fa0 (patch)
tree0c81a9880662868e89a88755ef8000698ead5b7f /README.md
parent3d2549d4f461cd2cb21bde6ef8a482f1f27a51ae (diff)
add parallax horizontal and vertical properties to enable non-calculated parallax offsets
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index f224e5e..20d2e4c 100644
--- a/README.md
+++ b/README.md
@@ -164,6 +164,10 @@ Reveal.initialize({
// Parallax background size
parallaxBackgroundSize: '' // CSS syntax, e.g. "2100px 900px"
+ // Amount to move parallax background (horizontal and vertical) on slide change
+ // Number, e.g. 100
+ parallaxBackgroundHorizontal: '',
+ parallaxBackgroundVertical: ''
});
```
@@ -371,7 +375,7 @@ Backgrounds transition using a fade animation by default. This can be changed to
### Parallax Background
-If you want to use a parallax scrolling background, set the two following config properties when initializing reveal.js (the third one is optional).
+If you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other three are optional).
```javascript
Reveal.initialize({
@@ -383,7 +387,12 @@ Reveal.initialize({
parallaxBackgroundSize: '', // CSS syntax, e.g. "2100px 900px" - currently only pixels are supported (don't use % or auto)
// This slide transition gives best results:
- transition: linear
+ transition: linear,
+
+ // Amount to move parallax background (horizontal and vertical) on slide change
+ // This is optional, if this isn't specified it will be calculated automatically
+ parallaxBackgroundHorizontal: '', // A number, e.g. 100
+ parallaxBackgroundVertical: '' // A number, e.g. 10
});
```