mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
* add src dir && add build * add build watch && change dir name * bower ignore package.json
23 lines
468 B
Plaintext
23 lines
468 B
Plaintext
.zan-toptips {
|
|
display: block;
|
|
position: fixed;
|
|
-webkit-transform: translateZ(0) translateY(-100%);
|
|
width: 100%;
|
|
/* 至少有一行的高度,保证第一次动画显示正常 */
|
|
min-height: 32px;
|
|
top: 0;
|
|
line-height: 2.3;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
color: #FFF;
|
|
background-color: #E64340;
|
|
z-index: 110;
|
|
|
|
/* 动画部分 */
|
|
transition: all 0.4s ease;
|
|
}
|
|
|
|
.zan-toptips--show {
|
|
-webkit-transform: translateZ(0) translateY(0);
|
|
}
|