Added transition decade

This commit is contained in:
2016-06-04 13:21:36 +08:00
parent 5b1955ced7
commit c739dfd76b
2 changed files with 7 additions and 2 deletions
+4 -1
View File
@@ -64,18 +64,21 @@
}
}
var cp = 0;
Cycle.perma(
"PARALLAXSCR"
, function()
{
var p = sSupplier.scrollTop/(sSupplier.scrollHeight - sSupplier.clientHeight);
cp = 0.85 * cp + p * 0.15;
for(var i = 0; i < l; i ++)
{
s = Parallax["s" + i];
for(var j = 0, k; j < s.length; j ++)
{
k = s[j];
k.element.style.top = String(-k.verticalRange*((j + 1)*p)) + "%";
k.element.style.top = String(-k.verticalRange*((j + 1)*cp)) + "%";
}
}
}