/**
* @constructor
*/
function XUIRotateMenu() {
}
XUIRotateMenu.prototype = {
//接口
/**
* 设置初始化旋转角度
* @param {Number} nAngle 角度
* @property {Number} InitAngle 120
*/
SetInitAngle:function (nAngle) {
},
/**
* 设置半径长度
* @param {Number} nRadius 单位px
* @property {Number} Radius 140
*/
SetRadius:function (nRadius) {
},
/**
* 设置旋转速度
* @param {Number} nSpeed 单位ms
* @property {Number} Speed 1000
*/
SetSpeed:function (nSpeed) {
},
/**
* 判断是否自动旋转
* @param {Boolean} bAuto 是否自动
* @property {Boolean} AutoRotate true
*/
IsAutoRotate:function (bAuto) {
},
/**
* 设置焦点位置
* @param {Number} nIndex 下标
* @property {Number} SelectPosition 1
*/
SetSelectPosition:function (nIndex) {
},
/**
* 设置背景Gif图路径
* @param {String} strPath 路径
* @property {String} BgImage "websiteCase/XUIRotateMenu/images/rotate.gif"
*/
SetBgImage:function (strPath) {
},
/**
* 设置按钮图片路径
* @param {String} strPath 路径
* @property {String} ButtonImage "websiteCase/XUIRotateMenu/images/icon_quanbu.png"
*/
SetButtonImage:function (strPath) {
},
/**
* 设置按钮图片路径
* @param {Number} data1 数据1
* @param {Number} data2 数据2
* @param {Number} data3 数据3
* @property {Array} PieData [335,310,234]
*/
SetPieData:function (data1,data2,data3) {
},
/**
* 设置调用
* @param {String} callback
* @param {String} callObj
*/
SetAutoCallback:function (callback,callObj) {
},
}