mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
修复 toptips 样式问题 (#116)
This commit is contained in:
parent
c440e66abf
commit
741d0d1237
@ -4,7 +4,7 @@ module.exports = {
|
||||
// 如果已经有一个计时器在了,就清理掉先
|
||||
if (zanTopTips.timer) {
|
||||
clearTimeout(zanTopTips.timer);
|
||||
zanTopTips.timer = -1;
|
||||
zanTopTips.timer = 0;
|
||||
}
|
||||
|
||||
if (typeof options === 'number') {
|
||||
@ -22,7 +22,7 @@ module.exports = {
|
||||
let timer = setTimeout(() => {
|
||||
this.setData({
|
||||
'zanTopTips.show': false,
|
||||
'zanTopTips.timer': -1
|
||||
'zanTopTips.timer': 0
|
||||
});
|
||||
}, options.duration);
|
||||
|
||||
|
@ -12,6 +12,7 @@
|
||||
color: #FFF;
|
||||
background-color: #E64340;
|
||||
z-index: 110;
|
||||
opacity: 0;
|
||||
|
||||
/* 动画部分 */
|
||||
transition: all 0.4s ease;
|
||||
@ -19,4 +20,5 @@
|
||||
|
||||
.zan-toptips--show {
|
||||
-webkit-transform: translateZ(0) translateY(0);
|
||||
opacity: 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user