Page({
global : {
timer : null ,
isRand : false
},
data: {
dice : ['first','second','third','fourth','fifth','sixth'],
buttonType : 'primary',
buttonValue : '摇一摇',
isShow:'hidden',
num1 : 0,
num2 : 0,
num3 : 0,
total: 0
},
shakeClick: function () {
let me = this;
this.global.isRand = !this.global.isRand;
if ( this.global.isRand ) {
this.global.timer = setInterval(function (){
let num1 = Math.floor(Math.random()*6);
let num2 = Math.floor(Math.random()*6);
let num3 = Math.floor(Math.random()*6);
me.setData({num1 : num1});
me.setData({num2 : num2});
me.setData({num3 : num3});
me.setData({total : num1+num2+num3+3});
},50);
} else {
clearInterval(this.global.timer);
}
this.setData({
dice: this.data.dice,
buttonType : (this.global.isRand) ? 'default' : 'primary',
buttonValue : (this.global.isRand) ? '停止' : '摇一摇',
isShow: (this.global.isRand) ? 'hidden':'show',
});
},
})
大富大贵7
- 粉丝: 398
- 资源: 8868
最新资源
- 竞品分析培训课件03竞品分析.pptx
- 竞品分析培训课件02竞品分析.pptx
- 竞品分析培训课件06竞争产品分析.pptx
- 竞品分析培训课件04竞品分四.pptx
- 竞品分析培训课件05竞品分析.pptx
- 竞品分析培训课件08电商平台竞品分析.pptx
- fftw-devel-3.3.3-8.el7.x64-86.rpm.tar.gz
- 4N模型:决定新品类能否取得成功.pptx
- 3大洞察:找到新品类初步概念.pptx
- 5大方向:最容易找到新品类机会.pptx
- 品牌定位的终极方式—《品类创新》.pptx
- fftw-doc-3.3.3-8.el7.x64-86.rpm.tar.gz
- fftw-libs-3.3.3-8.el7.x64-86.rpm.tar.gz
- fftw-libs-double-3.3.3-8.el7.x64-86.rpm.tar.gz
- 设计公司学习资料 -FutuerBrand .pdf
- 设计公司学习资料 -DRAGON ROUGE .pdf
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈