微信小程序中显示倒计时代码实例
作者:MacleChen 时间:2024-04-23 09:32:22
wxml文件中:
<!--倒计时 -->
<view class="countDownTimeView countDownAllView" >
<view class="voteText countDownTimeText">{{countDownDay}}天</view>
<view class="voteText countDownTimeText">{{countDownHour}}时</view>
<view class="voteText countDownTimeText">{{countDownMinute}}分</view>
<view class="voteText countDownTimeText">{{countDownSecond}}秒</view>
</view>
js文件中:
Page( {
data: {
windowHeight: 654,
maxtime: "",
isHiddenLoading: true,
isHiddenToast: true,
dataList: {},
countDownDay: 0,
countDownHour: 0,
countDownMinute: 0,
countDownSecond: 0,
},
//事件处理函数
bindViewTap: function() {
wx.navigateTo( {
url: '../logs/logs'
})
},
onLoad: function() {
this.setData( {
windowHeight: wx.getStorageSync( 'windowHeight' )
});
},
// 页面渲染完成后 调用
onReady: function () {
var totalSecond = 1505540080 - Date.parse(new Date())/1000;
var interval = setInterval(function () {
// 秒数
var second = totalSecond;
// 天数位
var day = Math.floor(second / 3600 / 24);
var dayStr = day.toString();
if (dayStr.length == 1) dayStr = '0' + dayStr;
// 小时位
var hr = Math.floor((second - day * 3600 * 24) / 3600);
var hrStr = hr.toString();
if (hrStr.length == 1) hrStr = '0' + hrStr;
// 分钟位
var min = Math.floor((second - day * 3600 *24 - hr * 3600) / 60);
var minStr = min.toString();
if (minStr.length == 1) minStr = '0' + minStr;
// 秒位
var sec = second - day * 3600 * 24 - hr * 3600 - min*60;
var secStr = sec.toString();
if (secStr.length == 1) secStr = '0' + secStr;
this.setData({
countDownDay: dayStr,
countDownHour: hrStr,
countDownMinute: minStr,
countDownSecond: secStr,
});
totalSecond--;
if (totalSecond < 0) {
clearInterval(interval);
wx.showToast({
title: '活动已结束',
});
this.setData({
countDownDay: '00',
countDownHour: '00',
countDownMinute: '00',
countDownSecond: '00',
});
}
}.bind(this), 1000);
},
//cell事件处理函数
bindCellViewTap: function (e) {
var id = e.currentTarget.dataset.id;
wx.navigateTo({
url: '../babyDetail/babyDetail?id=' + id
});
}
})
效果图:
以上所述是小编给大家介绍的微信小程序中显示倒计时详解整合网站的支持!
来源:https://blog.csdn.net/yishengzhiai005/article/details/77099808
标签:微信小程序,倒计时
0
投稿
猜你喜欢
Mysql 执行一条语句的整个过程详细
2024-01-19 08:53:08
Vue首屏时间指标采集最佳方式详解
2024-06-05 09:17:24
Python中replace方法实例分析
2023-09-30 05:42:53
vue动态菜单、动态路由加载以及刷新踩坑实战
2024-05-05 09:25:27
escape,encodeURI,encodeURIComponent函数比较
2008-01-27 11:19:00
Python实现京东秒杀功能代码
2021-08-14 15:41:27
zabbix监控mysql的实例方法
2024-01-19 06:39:56
Python中根据时间自动创建文件夹的代码实现
2023-07-06 02:42:01
建立MySQL数据库日常维护规范
2009-03-20 12:34:00
JavaScript中的函数声明和函数表达式区别浅析
2023-08-05 23:22:36
MySQL8数据库安装及SQL语句详解
2024-01-17 21:25:33
在Python中使用filter去除列表中值为假及空字符串的例子
2022-02-01 06:47:35
Go微服务项目配置文件的定义和读取示例详解
2023-06-23 22:48:50
基于Python matplotlib库绘制箱线图
2021-09-04 22:23:24
MySQL中关于临时表的一些基本使用方法
2024-01-18 01:22:34
用Python实现一个模仿UP主弹幕控制的直播间功能
2023-02-24 18:13:27
Python编写带选项的命令行程序方法
2023-11-18 20:47:35
Django1.11配合uni-app发起微信支付的实现
2023-12-18 13:22:22
安装dbus-python的简要教程
2021-09-07 10:09:43
PostgreSQL基础知识之SQL操作符实践指南
2024-01-19 18:31:34