It is possible to use the animation toolkit in using pure javascript. Becos I want to use the scaleAnimation in php platform.
I tried some like this but have error "Type is undefined"
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
</HEAD>
<script src="Altas.js" type="text/javascript" defer></script>
<script src="Common.js" type="text/javascript" defer></script>
<script src="Animations.js" type="text/javascript" defer></script>
<script>
function play()
{
var ani = new AjaxControlToolkit.Animation.ScaleAnimation(new Sys.UI.Control($get("test"), 10, 5, .5, "px", true, true, "px");
ani.play();
}
</script>
<BODY>
<div id="test" style="width:100px; height:100px">
Test
</div>
<input type="button" onclick="play();" />
</BODY>
</HTML>