mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
21 lines
377 B
Plaintext
21 lines
377 B
Plaintext
.block {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: -50px 0 0 -50px;
|
|
background-color: #1989fa;
|
|
}
|
|
|
|
.van-enter-active-class,
|
|
.van-leave-active-class {
|
|
transition-property: background-color, transform;
|
|
}
|
|
|
|
.van-enter-class,
|
|
.van-leave-to-class {
|
|
background-color: red;
|
|
transform: rotate(-360deg) translate3d(-100%, -100%, 0);
|
|
}
|