摘要:
/*** Dare MoviePlay Object.* @constructor*///声明构造函数 构造函数初始化变量Dare.MoviePlay = function () { this.parent = new Dare.Util(); this.className = 'Dare.MoviePlay'; //----类Dare.MoviePlay全局属性变量-----// this.stylePath = dareStyle.getStylePath(); this.currentFocus = 'playPlay'; //初始化焦点 this.fas 阅读全文
摘要:
/*** Dare Movie Object.* @constructor*///声明构造函数 构造函数初始化变量Dare.Movie = function() { this.parent = new Dare.Util(); this.className = "Dare.Movie"; //----类Dare.Movie全局属性变量-----// this.stylePath = dareStyle.getStylePath(); this.pageIndex = 0; //当前页索引 this.pageTotal = 0; //总页数; this.pageSize = 阅读全文
摘要:
/*** Dare mediaplayer Object.* @constructor*///声明构造函数 构造函数初始化变量Dare.MediaPlayer = function () { this.parent = new Dare.Util(); this.className = "Dare.MediaPlayer"; //----类Dare.MediaPlayer全局属性变量-----// this.playPath = ''; //媒体播放路径 this.playType = 0; //媒体类型 movie、music、pic this.playM 阅读全文