2018/5/18 0:00:00
来源:不详
作者:未知
本篇文章主要为大家详细介绍了小程序条形倒计时动画的实现案例,非常简单,大家可以尝试一下。
一、效果图如下:
二、wxml
-
<view class='headpiece-time flex-row'>
-
<text class='headpiece-txt'>倒计时:</text>
-
<view class='headpiece-process'>
-
<view class='headpiece-process-inner' style="width:{{width}}%"></view>
-
</view>
-
<text class='headpiece-num'>{{t}}</text>
-
</view>
三、wxss
-
.headpiece-num {
-
position: absolute;
-
top: -3rpx;
-
right: -35rpx;
-
width: 62rpx;
-
height: 100%;
-
text-align: center;
-
}
-
-
.headpiece-time {
-
position: relative;
-
width: 305rpx;
-
}
-
-
.headpiece-process {
-
position: relative;
-
width: 138rpx;
-
height: 14rpx;
-
margin-right: 14rpx;
-
border: 4rpx solid #000;
-
overflow: hidden;
-
background: #fff4b2;
-
}
-
-
.headpiece-process-inner {
-
position: absolute;
-
top: 0rpx;
-
left: 0rpx;
-
background: #f74242;
-
height: 100%;
-
transition: all 0.3s ease-out;
-
}
四、index.js
-
/**
-
* 获取系统信息
-
*/
-
getSystemInfo: function () {
-
return new Promise((a, b) => {
-
wx.getSystemInfo({
-
success: function (res) {
-
a(res)
-
},
-
fail: function (res) {
-
b(res)
-
}
-
})
-
})
-
},
-
/**
-
* 进度条动画
-
*/
-
countdown: function () {
-
const requestAnimationFrame = callback => {
-
return setTimeout(callback, 1000 / 60);
-
}, cancelAnimationFrame = id => {
-
clearTimeout(id);
-
};
-
-
this.getSystemInfo().then(v => {
-
let maxtime = this.data.maxtime,
-
width = this.data.width,
-
sTime = +new Date,
-
_ts = this,
-
temp,
-
animate;
-
(animate = () => {
-
temp = requestAnimationFrame(() => {
-
let time = maxtime * 1000,
-
currentTime = +new Date,
-
schedule = 1 - (currentTime - sTime) / time,
-
schedule_1 = schedule <= 0 ? 0 : schedule,
-
width = parseInt(schedule_1 * 100),
-
t = parseInt((this.data.maxtime) * schedule_1)+1;
-
_ts.setData({
-
width: width,
-
t:t
-
});
-
if (schedule <= 0) {
-
cancelAnimationFrame(temp);
-
_ts.setData({
-
width: width,
-
t: 0
-
});
-
return;
-
} else {
-
animate();
-
};
-
})
-
})();
-
-
});
-
},
【本站声明】
1、本站文章中所选用的图片及文字来源于网络以及用户投稿,由于未联系到知识产权人或未发现有关知识产权的登记,如有知识产权人并不愿意我们使用,如果有侵权请立即联系。
2、本网站不对文章中所涉及的内容真实性、准确性、可靠性负责,仅系客观性描述,如您需要了解该类商品/服务详细的资讯,请您直接与该类商品/服务的提供者联系。
KESION 科汛软件
KESION 科汛软件是国内领先的在线教育软件及私域社交电商软件服务提供商,长期专注于为企业提供在线教育软件及社交电商SaaS平台解决方案。
公司核心产品云开店SaaS社交电商服务平台、在线教育SaaS服务平台、教育企业数字化SaaS云平台、企微营销助手、私有化独立部署品牌网校和在线教育咨询等。KESION 不断通过技术创新,提供产品和服务,助力企业向数字化转型,通过科技驱动商业革新,让商业变得更智慧!