MooTools - Back Transition



First it makes the back transition then all forth. Let us take an example wherein, we add a mouse down event to a div element along with back and forth events. Take a look at the following code.

Example

<!DOCTYPE html>
<html>

   <head>
      <style>
         #back_in {
            width: 100px;
            height: 20px;
            background-color: #F4D03F;
            border: 2px solid #808B96;
         }
         #back_out {
            width: 100px;
            height: 20px;
            background-color: #F4D03F;
            border: 2px solid #808B96;
         }
         #back_in-out {
            width: 100px;
            height: 20px;
            background-color: #F4D03F;
            border: 2px solid #808B96;
         }
      </style>
      
      <script type = "text/javascript" src = "MooTools-Core-1.6.0.js"></script>
      <script type = "text/javascript" src = "MooTools-More-1.6.0.js"></script>
      
      <script type = "text/javascript">
         window.addEvent('domready', function() {
            $('back_in').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'back:in'});
               this.tween('width', [80, 400]);
            });
            
            $('back_out').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'back:out'});
               this.tween('width', [80, 400]);
            });
            
            $('back_in-out').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'back:in-out'});
               this.tween('width', [80, 400]);
            });
         });
      </script>
   </head>
   
   <body>
      <div id = "back_in"> Back : in</div><br/>
      <div id = "back_out"> Back : out</div><br/>
      <div id = "back_in-out"> Back : in-out</div><br/>
   </body>
   
</html>

You will receive the following output −

Output

mootools_fxoptions.htm
Advertisements