nt;
if (e.style.posHeight != e.oHeight) {
e.style.posHeight += dh;
}
if (currCount < flyCount) {
window.setTimeout("doGrow(" + e.uniqueID + ");", msecs);
}
else {
e.style.height = "";
}
}
// inner loop for shrinking an object
function doShrink(e) {
var dh, dw;
var lineHeight = e.children[0].offsetHeight;
var p;
currCount++;
dh = (e.oHeight - lineHeight) / flyCount;
e.style.posHeight -= dh;
if (currCount < flyCount) {
window.setTimeout("doShrink(" + e.uniqueID + ");", msecs);
}
else {
e.style.posHeight = lineHeight;
}
}
</script>
</body>
</html>
if (e.style.posHeight != e.oHeight) {
e.style.posHeight += dh;
}
if (currCount < flyCount) {
window.setTimeout("doGrow(" + e.uniqueID + ");", msecs);
}
else {
e.style.height = "";
}
}
// inner loop for shrinking an object
function doShrink(e) {
var dh, dw;
var lineHeight = e.children[0].offsetHeight;
var p;
currCount++;
dh = (e.oHeight - lineHeight) / flyCount;
e.style.posHeight -= dh;
if (currCount < flyCount) {
window.setTimeout("doShrink(" + e.uniqueID + ");", msecs);
}
else {
e.style.posHeight = lineHeight;
}
}
</script>
</body>
</html>
没有相关信息学院
| 对此文章发表了评论 |

