jquery tools系列 expose 学习

2020-05-24 21:19:52易采站长站整理

    });
    $(“#btn_close”).click(function(){
        testApi.close();
    });
    alert(“test is load:”+testApi.isLoaded());
    $(“#ball”).expose({
        //此处通过maskId中样式的backgroundcolor来设置color属性
        maskId:’mask’,
        opacity:0.5,
        closeSpeed:’slow’,
        onBeforeLoad:function(){
            this.getExposed().animate({width:298});
        },
        onBeforeClose:function(){
            this.getExposed().animate({width:130});    
        }
        }).click(function(){
        $(this).expose().load();
    });
});
// –></script>