Commit b716472e by doszhang

dos

parent 98d2db71
...@@ -792,7 +792,7 @@ function fadeInTextUp(text, fadeTime, divName) { ...@@ -792,7 +792,7 @@ function fadeInTextUp(text, fadeTime, divName) {
let time = RandomNumBoth(10, 100) / 100; let time = RandomNumBoth(10, 100) / 100;
$(divName + ' .fly' + i).css('transform', 'translateY(' + RandomNumBoth(2000, 2500) / 100 + 'rem)') $(divName + ' .fly' + i).css('transform', 'translateY(' + RandomNumBoth(2000, 2500) / 100 + 'rem)')
.css('animationDelay', time + 's') .css('animationDelay', time + 's')
.fadeOut(0) .fadeOut(0).delay(time * 100)
.fadeIn(time * 100); .fadeIn(time * 100);
} }
// setTimeout(function () { // setTimeout(function () {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment