纯CSS实现新年倒计时
生活随笔
收集整理的這篇文章主要介紹了
纯CSS实现新年倒计时
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
onLoad: function (options) {var that = this//獲取系統(tǒng)信息 wx.getSystemInfo({//獲取系統(tǒng)信息成功,將系統(tǒng)窗口的寬高賦給頁(yè)面的寬高 success: function (res) {that.width = res.windowWidththat.height = res.windowHeight// 這里的單位是PX,實(shí)際的手機(jī)屏幕有一個(gè)Dpr,這里選擇iphone,默認(rèn)Dpr是2}})let date = util.formatDate(new Date());this.checkDate(date, '2023-01-01')let week = util.formatWeek(new Date())this.setData({date: date,week: week});this.downTime()},downTime(time) {var timerclock = setInterval(() => {var clock = new Date();var nh = clock.getHours();var nm = clock.getMinutes();var ns = clock.getSeconds();nh < 10 ? nh = ('0' + String(nh)) : '';nm < 10 ? nm = ('0' + String(nm)) : '';ns < 10 ? ns = ('0' + String(ns)) : '';console.log(nh + ':' + nm + ':' + ns)this.setData({time: nh + ':' + nm + ':' + ns})}, 1000);},checkDate(startTime, endTime) {//日期格式化var start_date = new Date(startTime.replace(/-/g, "/"));var end_date = new Date(endTime.replace(/-/g, "/"));//轉(zhuǎn)成毫秒數(shù),兩個(gè)日期相減var ms = end_date.getTime() - start_date.getTime();//轉(zhuǎn)換成天數(shù)var day = parseInt(ms / (1000 * 60 * 60 * 24));//do somethingthis.setData({day: day})},
<view class="container"><canvas canvas-id="clock" /></view>
<view class="date"><view> {{date}}</view><view class="week">{{week}}</view><view class="day">新年倒計(jì)時(shí){{day}}<text style="font-size: 20rpx;">天</text></view><view class="day">春節(jié)倒計(jì)時(shí){{day+21}}<text style="font-size: 20rpx;">天</text></view><view class="time">{{time}}</view>
</view>
.container {height: 100%;width: 100%;background-color: #118fff;background-image: linear-gradient(#fff,#fea000, #118fff);
}canvas {height: 100%;width: 100%;
}page {width: 100%;height: 100%;
}.date {position: absolute;top: 2%;left: 35%;font-size: 50rpx;color: red;display: flex;justify-content: center;flex-direction: column;text-align: center;font-weight: bold;
}
.week{font-size: 40rpx;margin: 10rpx 0;
}
.day{font-size: 30rpx;margin-bottom: 10rpx;
}
.word {font-size: 36rpx;
}
.time{/* color: #dd6311; */
}
總結(jié)
以上是生活随笔為你收集整理的纯CSS实现新年倒计时的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: android-加固方案对比
- 下一篇: css动画帧动画效果,CSS3动画之逐帧