Jump to content

slow height


corillo181

Recommended Posts

here's a quick one, but you ought to check out SPRY, i use it, you can see it on my website

or check out SPRY here http://labs.adobe.com/technologies/spry/demos/

 


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
<title>Untitled</title>
</head>

<body>

<div id="box" style="visibility:visible;width:200px;height:150px;top:225;left:300;position:absolute;background:white;z-index:20;border:1px black solid;"> </div>

<input type="button" value="Grow!" onClick="doGrow()">

<script language="JavaScript" type="text/javascript">
<!--
var oLvl = 00;
var oEnd = 75;
var vwidth = 200;
var vheight = 150;
var vtop = 225;
var vleft = 300;
var obj = document.getElementById('box')

function doGrow()
{
oLvl++
if (oLvl < oEnd)
{
obj.style.width = vwidth++ +"px";
obj.style.height = vheight++ +"px";
obj.style.top = vtop-- +"px";
obj.style.left = vleft-- +"px";

setTimeout('doGrow()',5);	
}
}

// -->
</script>


</body>
</html>


Link to comment
https://forums.phpfreaks.com/topic/82189-slow-height/#findComment-417710
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.