ITT we insult the poster above us [PART IV] (999)

516 Name: ⊂二二二( ^ω^)二二二⊃ : 1993-09-4848 19:35

>>515
function mittensFall() { if (!getRefToDivNest("snFlkDiv0")) { return; } var scrWidth = 0, scrHeight = 0, scrollHeight = 0, scrollWidth = 0; if (typeof window.innerWidth == "number") { scrWidth = window.innerWidth; scrHeight = window.innerHeight; } else { if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) { scrWidth = document.documentElement.clientWidth; scrHeight = document.documentElement.clientHeight; } else { if (document.body && (document.body.clientWidth || document.body.clientHeight)) { scrWidth = document.body.clientWidth; scrHeight = document.body.clientHeight; } } } if (typeof window.pageYOffset == "number") { scrollHeight = pageYOffset; scrollWidth = pageXOffset; } else { if (document.body && (document.body.scrollLeft || document.body.scrollTop)) { scrollHeight = document.body.scrollTop; scrollWidth = document.body.scrollLeft; } else { if (document.documentElement && (document.documentElement.scrollLeft || document.documentElement.scrollTop)) { scrollHeight = document.documentElement.scrollTop; scrollWidth = document.documentElement.scrollLeft; } } } for (var x = 0; x < numFlakes; x++) { if (ycoords[x] * scrHeight > scrHeight - pictureHeight) { ycoords[x] = 0; } var divRef = getRefToDivNest("snFlkDiv" + x); if (!divRef) { return; } if (divRef.style) { divRef = divRef.style; } var oPix = document.childNodes ? "px" : 0; divRef.top = Math.round(ycoords[x] * scrHeight) + scrollHeight + oPix; divRef.left = Math.round(xcoords[x] * scrWidth - pictureWidth / 2 + scrWidth / ((numFlakes + 1) * 4) * (Math.sin(lrFlakes * ycoords[x]) - Math.sin(3 * lrFlakes * ycoords[x]))) + scrollWidth + oPix; ycoords[x] += downSpeed; } }

This thread has been closed. You cannot post in this thread any longer.