Jquery-effect-slide

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

jQueryエフェクト-スライドエフェクト

説明

  • スライド*効果は、表示/非表示/切り替えで使用できます。 これにより、要素がビューポートの外にスライドします。

構文

この効果を使用するための簡単な構文は次のとおりです-

selector.hide|show|toggle( "slide", {arguments}, speed );

パラメーター

ここにすべての引数の説明があります-

  • 方向-効果の方向。 「左」、「右」、「上」、「下」にすることができます。 デフォルトは残っています。
  • 距離-効果の距離。 方向オプションに応じて、要素の高さまたは幅に設定されます。
  • mode -エフェクトのモード。 「表示」または「非表示」にできます。 デフォルトはshowです。

以下は、この効果の使用法を示す簡単な例です-

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript"
         src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>

      <script type = "text/javascript"
         src = "https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js">
      </script>

      <script type = "text/javascript" language = "javascript">

         $(document).ready(function() {

            $("#hide").click(function(){
               $(".target").hide( "slide", { direction: "down"  }, 2000 );
            });

            $("#show").click(function(){
               $(".target").show( "slide", {direction: "up" }, 2000 );
            });

         });

      </script>

      <style>
         p {background-color:#bca; width:200px; border:1px solid green;}
         div{ width:100px; height:100px; background:red;}
      </style>
   </head>

   <body>
      <p>Click on any of the buttons</p>

      <button id = "hide"> Hide </button>
      <button id = "show"> Show</button>

      <div class = "target">
      </div>
   </body>
</html>

これにより、次の結果が生成されます–