rhjirftyjn, как вариант...
<!DOCTYPE html>
<html>
<head>
<style>
* {
margin: 0;
padding: 0;
}
div {
width: 100px;
height: 20px;
background-color: silver;
}
</style>
<script>
function Go() {
var o=document.getElementById('box').style
var w=(o.width)? parseInt(o.width): 100
var h=(o.height)? parseInt(o.height): 20
w+=10
h+=10
if (w>300) {
return
}
o.width=w+'px'
o.height=h+'px'
setTimeout(Go,20)
}
</script>
</head>
<body>
<div id='box'></div>
<input type='button' value='Go' onclick='Go()'>
</body>
</html>