Wijmo UI for the Web
effect フィールド

wijtree が折りたたまれるときに使用されるアニメーション効果。用意されているアニメーション効果のリストについては、「アニメーション効果」トピックを参照してください。

デフォルト:"blind"

シンタックス
Javascript (Usage) 
var instance; //タイプ:wijmo.tree.wijtree_animation;
var value; // Type: string
value = instance.effect;
Javascript (Specification) 
var effect : string;
使用例
<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>
解説

関連トピック

参照

wijtree_animation インターフェース
アニメーション
duration
easing

 

 


Copyright © GrapeCity inc. All rights reserved.