cocos creator 倒計時

    properties: {
        time: cc.Label
    },

    start() {
        this.time.string = 20;//如果要對倒計時的時間重新賦值
        this.schedule(this.doCountdownTime, 1);
    },

    //倒計時
    doCountdownTime() {
        //每秒更新顯示信息
        if (this.time.string > 0) {
            this.time.string -= 1;
            this.countDownShow(this.time.string);
        }
    },

    countDownShow(temp) {
        if (temp <= 0) {
            this.time.string = 0;
            //倒計時結束
            this.unschedule(this.doCountdownTime);
            //執行其他操作
        }
    },

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章