この記事は主に JavaScript プラグインの折りたたみについて学習することに焦点を当てています。
1. トランジションエフェクト
トランジション効果について
単純なトランジション効果の場合は、transition.js を他の JS ファイルと一緒に導入するだけです。コンパイルされた (または圧縮された) bootstrap.js ファイルを使用している場合は、それを個別にインポートする必要はありません。
中身は何ですか
Transition.js は、transitionEnd イベントの基本的なヘルパーであり、CSS トランジション効果のシミュレーションでもあります。現在のブラウザが CSS トランジション効果をサポートしているかどうかを検出するために、他のプラグインによって使用されます。
2.
を折ります。
アコーディオンやナビゲーションなどの折りたたみ機能をサポートするコンポーネントに、基本的なスタイルと柔軟なサポートを提供します。
プラグインの依存関係
折りたたみプラグインはトランジション エフェクト プラグインに依存しています。
ケース
折りたたみプラグインを使用して、パネルコンポーネントを拡張することにより、単純なアコーディオンコンポーネントを構築します。
まずは効果を見てみましょう。
コードの実装を見てみましょう。
<div class="container" style="margin-top:140px;"> <div class="panel-group" id="accordion"> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseOne"> Collapsible Group Item </a> </h4> </div> <div id="collapseOne" class="panel-collapse collapse in"> <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo"> Collapsible Group Item #2 </a> </h4> </div> <div id="collapseTwo" class="panel-collapse collapse"> <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div> <div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseThree"> Collapsible Group Item #3 </a> </h4> </div> <div id="collapseThree" class="panel-collapse collapse"> <div class="panel-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS. </div> </div> </div> </div> </div>
ステップ 1: まず、最も外側のレイヤー、panel-group には、このレイヤーの下にいくつかのグループが含まれています。
ステップ 2: いくつかの単純なグループを見てみましょう
<div class="panel panel-default"> <div class="panel-heading"> <h4 class="panel-title"> <a data-toggle="collapse" data-toggle="collapse" data-parent="#accordion" href="#collapseOne"> Collapsible Group Item #1 </a> </h4> </div> <div id="collapseOne" class="panel-collapse collapse in"> <div class="panel-body"> </div> </div> </div>
パネルの構造はコードを通して明確に見ることができます。
panel-header と pandl-body、panel-header にはタイトルとリンクを含めることができます。リンクを介してパネル本体に接続されます。
ステップ 3: パネルグループに id="accordion" があり、以下の各タイトルの下のリンクに data-parent="#accordion" があることがわかります。
削除すると、他のリンクをクリックした後に元のパネルが縮小しなくなります。
折り畳んだ効果を別の方法で示すこともできます。
<div class="container" style="margin-top:140px;"> <button type="button" class="btn btn-danger" data-toggle="collapse" data-target="#demo"> simple collapsible </button> <div id="demo" class="collapse in">Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.</div>
使用法
折りたたみプラグインは、いくつかの単純なクラスを通じてスタイルを制御します
.collapse コンテンツを非表示
.collapse in コンテンツを表示
.崩壊中。トランジションの開始時に追加され、終了時に削除されます。これはおそらく、折り目が追加された後にトランジション効果が存在し、削除されたときに終了することを意味します。
データ属性
を通じて
ページ要素に data-toggle="collapse" と data-target を追加するだけで、ページ要素に折りたたみを制御する機能を与えることができます。 data-target 属性は、CSS セレクターを制御オブジェクトとして受け入れます。折りたたみ可能なページ要素には必ず折りたたみクラスを追加してください。折りたたみ可能なページ要素のデフォルト状態を展開したい場合は、クラスに追加します。
折りたたみ可能なページ要素のグループにコントローラーを追加するには、data-parent="#selector" を追加します。上の例を参照してください。
JavaScript 経由
<button type="button" class="btn btn-danger" onClick="Open()">打开</button> <button type="button" class="btn btn-danger" onClick="Hide()">折叠</button> <div id="demo" class="collapse in">Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. 3 wolf moon officia aute, non cupidatat skateboard dolor brunch. Food truck quinoa nesciunt laborum eiusmod. Brunch 3 wolf moon tempor, sunt aliqua put a bird on it squid single-origin coffee nulla assumenda shoreditch et. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident. Ad vegan excepteur butcher vice lomo. Leggings occaecat craft beer farm-to-table, raw denim aesthetic synth nesciunt you probably haven't heard of them accusamus labore sustainable VHS.</div> <div class="panel-group" id="accordion" style="margin-top:240px;">
<script type="text/javascript"> $(function(){ $("#demo").collapse({ toggle: false }) }) function Open(){ $("#demo").collapse("show"); } function Hide(){ $("#demo").collapse("hide"); } </script>
上の効果を見てみましょう
メソッド
ページ要素に折りたたみ機能を追加します。オプションのオブジェクトをパラメータとして受け入れます。
$("#demo").collapse({toggle: false})
このようにして、要素は初期化時に展開されます。
1.collapse('toggle') は、折りたたみ可能なページ要素を表示または非表示にします。
2.collapse('show') は、折りたたみ可能なページ要素を表示します。
3.collapse('hide') は、折りたたみ可能なページ要素を非表示にします。
イベント
Bootstrap の折りたたみプラグインは、リッスンできる一連のイベントを公開します。
これは、非表示のイベントを要素にバインドします。
以上がこの記事の全内容となりますが、皆様の学習のお役に立てれば幸いです。