diff options
author | Michał Smoliński | 2013-09-11 20:41:50 +0200 |
---|---|---|
committer | Michał Smoliński | 2013-09-11 20:41:50 +0200 |
commit | 2bd228534b9e667ec465131ff35b09e0b41fe890 (patch) | |
tree | 7d3d3ab234a5c06b41ffbc0e0bcdb68d5be0525f /js/reveal.js | |
parent | 2b5c06c4ef3002381c1007160f8ab60b4b2bd641 (diff) |
Fix: no parallax scrolling in FF
Fixed problem with parallax background not working under FF
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js index 6562e65..abc0644 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -1510,14 +1510,11 @@ var Reveal = (function(){ var horizontalSlideCount = horizontalSlides.length; var horizontalOffset = -(bgWidth - slideWidth)/(horizontalSlideCount-1) * h; - dom.wrapper.style.backgroundPositionX = horizontalOffset + 'px'; - - var slideHeight = parseInt(dom.wrapper.offsetHeight, 10); var verticalSlideCount = currentVerticalSlides.length; var verticalOffset = verticalSlideCount > 0 ? -(bgHeight - slideHeight)/(verticalSlideCount-1) * v : 0; - dom.wrapper.style.backgroundPositionY = verticalOffset + 'px'; + dom.wrapper.style.backgroundPosition = horizontalOffset + 'px ' + verticalOffset + 'px'; } //////////////////////////////////// |