All pastes #2060447 Raw Edit

Something

public text v1 · immutable
#2060447 ·published 2011-05-15 15:36 UTC
rendered paste body


var topPos = 120;

function raise()
{

var pkgStyle = document.getElementById("pkg1").style;
topPos = topPos - 5;
if (topPos > 10) 
    {   pkgStyle.top = topPos + "px";
        setTimeout(raise, 25);
    }
else { pkgStyle.top = 10 + "px"; }

}

var heightPos = 100
function expand()
{
var pkgStyle = document.getElementById("pkg1").style;
heightPos = heightPos + 5;
if (heightPos < 400) 
    { pkgStyle.height = heightPos + "px";
      setTimeout(expand, 25);
    }
    
else { pkgStyle.height = "auto" }
}

function open()
{
    raise();
    expand();
    }