vant-weapp/dist/toptips/index.wxss
2016-12-26 15:01:43 +08:00

23 lines
468 B
Plaintext

.zui-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;
}
.zui-toptips--show {
-webkit-transform: translateZ(0) translateY(0);
}