Animate width property : Animation « Dojo toolkit « JavaScript DHTML
- JavaScript DHTML
- Dojo toolkit
- Animation
Animate width property
<html>
<head>
<link rel="StyleSheet" type="text/css"
href="js/dojo/dijit/themes/tundra/tundra.css">
<script type="text/javascript">
var djConfig = {
baseScriptUri : "js/dojo/",
parseOnLoad : true
};
</script>
<script type="text/javascript" src="js/dojo/dojo/dojo.js"></script>
<script>
dojo.addOnLoad(function( ) {
dojo.animateProperty({
node: "box",
properties: { width: { end: 500 } }
}).play( );
});
</script>
</head>
<body class="tundra">
<div id="box" style="background : red">click</div>
</body>
</html>
Dojo-toolkit.zip( 3,849 k)Related examples in the same category