Animation: enlarge : Animation « Dojo toolkit « JavaScript DHTML

Home
JavaScript DHTML
1.Ajax Layer
2.Data Type
3.Date Time
4.Development
5.Document
6.Dojo toolkit
7.Event
8.Event onMethod
9.Ext JS
10.Form Control
11.GUI Components
12.HTML
13.Javascript Collections
14.Javascript Objects
15.Javascript Properties
16.jQuery
17.Language Basics
18.Mochkit
19.Mootools
20.Node Operation
21.Object Oriented
22.Page Components
23.Rico
24.Scriptaculous
25.Security
26.SmartClient
27.Style Layout
28.Table
29.Utilities
30.Window Browser
31.YUI Library
JavaScript DHTML » Dojo toolkit » Animation 
Animation: enlarge
 
<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(  ) {
    var box = dojo.byId("box");
    dojo.connect(box, "onclick"function(evt) {
        dojo.animateProperty({
            node : box,
            duration : 10000,
            rate : 1000,
            properties : {
                height : {start : '200', end '400'},
                width : {start : '200', end '400'}
           }
        }).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
1.Animate width property
2.Animation easing function
3.Animation with dojox.timing.Sequence
4.Animation: Add new class to tag and
5.Animation: fly
6.Animation: resize
7.Animation: stratch
8.Chained animation
9.Change position animation
10.Fade effect for Menu under ComboButton
11.Fade me out
12.Fade out animation
13.Fadein animation
14.Fadeout animation demo
15.Cross fade
16.Highlight animation
17.Path animation
18.Set animation rate
19.Pause before
20.Pause one second
21.Repeat 5 times
22.Wipeout animation
23.Wipeout animation easing function
24.dojo animation alert
25.Math ease function
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.