/**
* @constructor
*/
function XUIAnimationContainer() {
}

XUIAnimationContainer.prototype = {

    //接口
    /**
    * 设置动效
    * @param {String} strTransition 动效
    * @property {String} Transition "all 2s ease-in"
    */
    SetTransition:function (strTransition) {
    },

    /**
    * 设置是否使用颜色绘制
    * @param {Boolean} bDrawColor 使用颜色绘制
    * @property {Boolean} DrawColor true
    */
    SetDrawColor:function (bDrawColor) {
    },

    /**
    * 是否使用颜色绘制
    * @return {Boolean} 是否使用颜色绘制
    */
    IsDrawColor:function () {
    },

    /**
    * 设置背景颜色
    * @param {String} strColor 背景颜色
    * @property {Color} BgColor "0xffff0000"
    */
    SetBgColor:function (strColor) {
    },

    /**
    * 设置背景图片
    * @param {ImageProp} strImage 
    * @property {ImageProp} BgImage ""
    */
    SetBgImage:function (strImage) {
    },

}