Fadeout animation demo : Animation « Dojo toolkit « JavaScript DHTML






Fadeout animation demo

 
<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.require("dojo.fx");
dojo.addOnLoad(function(  ) {
    var box = dojo.byId("box");
    var t = new dojo.fx.Toggler({
        node : box,
        showDuration : 2000,
        hideDuration : 2000
    });
    var visible = true;
    dojo.connect(box, "onclick", function(evt) {
        if (visible)
            t.hide(  );
        else
            t.show(  );

        visible = !visible;
    });
});
    </script>
  </head>
  <body class="tundra">
       <div id="box" style="background : red;height:400px">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: enlarge
6.Animation: fly
7.Animation: resize
8.Animation: stratch
9.Chained animation
10.Change position animation
11.Fade effect for Menu under ComboButton
12.Fade me out
13.Fade out animation
14.Fadein animation
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