mirror of
https://git.beihong.wang/wangbeihong/iot-bedroom-environment-controller.git
synced 2026-04-28 02:49:45 +08:00
增加补充相关资料和小程序源码
This commit is contained in:
43
微信小程序源码/iot-home/components/firstui/fui-toast/fui-toast.wxss
Normal file
43
微信小程序源码/iot-home/components/firstui/fui-toast/fui-toast.wxss
Normal file
@@ -0,0 +1,43 @@
|
||||
.fui-toast__wrap {
|
||||
position: fixed;
|
||||
left: 15%;
|
||||
right: 15%;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
background-color: rgba(0, 0, 0, 0);
|
||||
z-index: 1002;
|
||||
display: flex;
|
||||
visibility: hidden;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition-property: opacity, visibility;
|
||||
transition-timing-function: ease-in-out;
|
||||
transition-duration: 0.3s;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.fui-toast__inner {
|
||||
display: flex;
|
||||
box-sizing: border-box;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
border-radius: 16rpx;
|
||||
}
|
||||
|
||||
.fui-toast__show {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
||||
.fui-toast__icon-box {
|
||||
padding-bottom: 20rpx;
|
||||
}
|
||||
|
||||
.fui-toast__icon {
|
||||
display: block;
|
||||
}
|
||||
.fui-toast__text {
|
||||
font-weight: 400;
|
||||
text-align: center;
|
||||
word-break: break-all;
|
||||
}
|
||||
Reference in New Issue
Block a user