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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.