修复 toptips 样式问题 (#116)

This commit is contained in:
Yao 2018-01-21 15:58:14 +08:00 committed by GitHub
parent c440e66abf
commit 741d0d1237
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -4,7 +4,7 @@ module.exports = {
// 如果已经有一个计时器在了,就清理掉先 // 如果已经有一个计时器在了,就清理掉先
if (zanTopTips.timer) { if (zanTopTips.timer) {
clearTimeout(zanTopTips.timer); clearTimeout(zanTopTips.timer);
zanTopTips.timer = -1; zanTopTips.timer = 0;
} }
if (typeof options === 'number') { if (typeof options === 'number') {
@ -22,7 +22,7 @@ module.exports = {
let timer = setTimeout(() => { let timer = setTimeout(() => {
this.setData({ this.setData({
'zanTopTips.show': false, 'zanTopTips.show': false,
'zanTopTips.timer': -1 'zanTopTips.timer': 0
}); });
}, options.duration); }, options.duration);

View File

@ -12,6 +12,7 @@
color: #FFF; color: #FFF;
background-color: #E64340; background-color: #E64340;
z-index: 110; z-index: 110;
opacity: 0;
/* 动画部分 */ /* 动画部分 */
transition: all 0.4s ease; transition: all 0.4s ease;
@ -19,4 +20,5 @@
.zan-toptips--show { .zan-toptips--show {
-webkit-transform: translateZ(0) translateY(0); -webkit-transform: translateZ(0) translateY(0);
opacity: 1;
} }