2020年5月12日
摘要: //JS部分 data:{ countDownNum: 3, timer: '', //定时器 } //定时器 countDown: function () { let that = this; let countDownNum = 3; //获取倒计时初始值 that.setData({ coun 阅读全文
posted @ 2020-05-12 11:33 萬事順意 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: 1 //JS 部分 data: { 2 text: "公告公告公告公告公告公告公告公告公告公告公告公告公告公告", 3 animation: null, 4 timer: null, 5 duration: 0, 6 textWidth: 0, 7 wrapWidth: 0 8 }, 9 /** 1 阅读全文
posted @ 2020-05-12 10:36 萬事順意 阅读(877) 评论(1) 推荐(0) 编辑
摘要: 1 function time_range(beginTime, endTime) { 2 var strb = beginTime.split(":"); 3 4 if (strb.length != 2) { 5 return false; 6 } 7 8 var stre = endTime. 阅读全文
posted @ 2020-05-12 10:25 萬事順意 阅读(3145) 评论(0) 推荐(0) 编辑