Mootools-expo-transition

提供:Dev Guides
移動先:案内検索

MooTools-Expo Transition

これは、in、out、およびin-outイベントを伴う指数関数的な遷移を表示します。 例を挙げてみましょう。ここでは、指数関数イベントとともに mouse down イベントをdiv要素に追加します。 次のコードを見てください。

<!DOCTYPE html>
<html>

   <head>
      <style>
         #expo_in {
            width: 100px;
            height: 20px;
            background-color: #F4D03F;
            border: 2px solid #808B96;
         }
         #expo_out {
            width: 100px;
            height: 20px;
            background-color: #F4D03F;
            border: 2px solid #808B96;
         }
         #expo_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() {
            $('expo_in').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'expo:in'});
               this.tween('width', [80, 400]);
            });

            $('expo_out').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'expo:out'});
               this.tween('width', [80, 400]);
            });

            $('expo_in-out').addEvent('mousedown', function(event) {
               this.set('tween', {duration: 'long', transition: 'expo:in-out'});
               this.tween('width', [80, 400]);
            });
         });
      </script>
   </head>

   <body>
      <div id = "expo_in"> Expo : in</div><br/>
      <div id = "expo_out"> Expo : out</div><br/>
      <div id = "expo_in-out"> Expo : in-out</div><br/>
   </body>

</html>

次の出力が表示されます-

出力