wijmo.tree 名前空間 > wijtree_animation インターフェース : effect フィールド |
wijtree が折りたたまれるときに使用されるアニメーション効果。用意されているアニメーション効果のリストについては、「アニメーション効果」トピックを参照してください。
デフォルト:"blind"
Javascript (Usage) | |
---|---|
var instance; //タイプ:wijmo.tree.wijtree_animation; var value; // Type: string value = instance.effect; |
Javascript (Specification) | |
---|---|
|
<script id="scriptInit" type="text/javascript"> $(document).ready(function () { $("#tree").wijtree({ collapseAnimation:{ effect: "shake", duration: 1000, easing: "easeOutBounce" }, expandAnimation:{ effect: "fold", duration: 1000, easing: "easeInBounce" } }); }); </script>