美文网首页
微信小游戏:pageview 轮播图

微信小游戏:pageview 轮播图

作者: cmd_ts | 来源:发表于2018-09-19 17:24 被阅读35次
    const {ccclass, property} = cc._decorator;
    
    @ccclass
    export default class NewClass extends cc.Component {
        @property({type: cc.PageView})
        banner:cc.PageView=null;
        @property
        _pageIdx = 0;
        onLoad () {
        }
    
        start () {       
        }
    
        onEnable () {
            this.schedule(this.schdulePageView, 5);        
        }
    
        onDisable () {
            this.unschedule(this.schdulePageView);
        }
    
        /**
         * 循环播放广告
         */
        schdulePageView () {
            if (this._pageIdx >= this.banner.getPages().length) {
                this._pageIdx = 0;
            }
            this.banner.setCurrentPageIndex(this._pageIdx);
            cc.log(this.banner.getCurrentPageIndex());//获得当前的页数
            this._pageIdx+=1;
        }
    
        // update (dt) {}
    
       
    }
    

    代码导出为:http://note.youdao.com/noteshare?id=ed1e33093188f6f3c28ef504663fb9df&sub=3E5C420615934CD199D51AC8C599DCE0
    下载后,文件-》资源导入

    相关文章

      网友评论

          本文标题:微信小游戏:pageview 轮播图

          本文链接:https://www.haomeiwen.com/subject/nnninftx.html