<html  xmlns="http://www.w3.org/1999/xhtml" xmlns:t ="urn:schemas-microsoft-com:time" >
<head>
<?IMPORT namespace="t" implementation="#default#time2"?>
<title>animate Element</title>
<style>
body { background-image: url(../images/animation-values-BE-07.png); background-repeat:no-repeat;}
.bord {border-width:2;border-color:green;}
</style>
</head>
<body>
<div>
<img id="rect1" class="bord" style="position:absolute; top:60; left:76" src="../images/red.png" height="100" width="20"/>
<t:animate targetElement="rect1" attributeName="height" from="100" to="10" begin="2s" dur="3s" fill="freeze"/>
</div>
<div>
<img id="rect2" class="bord" style="position:absolute; top:60; left:184" src="../images/red.png" height="100" width="20"/>
<t:animate targetElement="rect2" attributeName="height" from="100" by="-90" begin="2s" dur="3s" fill="freeze"/>
</div>
<div>
<img id="rect3" class="bord" style="position:absolute; top:60; left:296" src="../images/red.png" height="100" width="20"/>
<t:animate targetElement="rect3" attributeName="height" by="-90" begin="2s" dur="3s" fill="freeze"/>		
</div>
<div>
<img id="rect4" class="bord" style="position:absolute; top:60; left:406" src="../images/red.png" height="100" width="20"/>
<t:animate  targetElement="rect4" attributeName="height" to="10" begin="2s" dur="3s" fill="freeze"/>
</div>
<div>
<img id="rect5" class="bord" style="position:absolute; top:220; left:76" src="../images/red.png" height="100" width="20"/>
<t:animate targetElement="rect5" attributeName="height" values="100;10" begin="2s" dur="3s" fill="freeze"/> 
</div>
<div>
<img id="rect6" class="bord" style="position:absolute; top:220; left:184" src="../images/red.png" height="100" width="20"/>
<t:animate targetElement="rect6" attributeName="height" values="100;70;40;10" begin="2s" dur="3s" fill="freeze"/> 
</div>
</body>
</html>