diff --git a/botanjs/src/Astro/Blog/Layout/MainFrame.js b/botanjs/src/Astro/Blog/Layout/MainFrame.js index 733e0b1..87b5413 100644 --- a/botanjs/src/Astro/Blog/Layout/MainFrame.js +++ b/botanjs/src/Astro/Blog/Layout/MainFrame.js @@ -243,7 +243,7 @@ { var p = wsupp.scrollTop / ( wsupp.scrollHeight - wsupp.clientHeight ); cp = 0.75 * cp + 0.25 * p; - bWrapper.style.backgroundPosition = "50% " + cp * 100 + "%"; + bWrapper.style.backgroundPosition = "50% " + ( cp * 100 ).toFixed( 2 ) + "%"; } , 15 ); diff --git a/botanjs/src/Astro/Mechanism/Parallax.js b/botanjs/src/Astro/Mechanism/Parallax.js index c003101..05c3413 100644 --- a/botanjs/src/Astro/Mechanism/Parallax.js +++ b/botanjs/src/Astro/Mechanism/Parallax.js @@ -78,7 +78,7 @@ for(var j = 0, k; j < s.length; j ++) { k = s[j]; - k.element.style.top = String(-k.verticalRange*((j + 1)*cp)) + "%"; + k.element.style.top = ( -k.verticalRange * ( ( j + 1 ) * cp ) ).toFixed( 2 ) + "%"; } } }