Browse Source

force opacity of 0 (#14703)

pull/14709/head
zombieJ 6 years ago
committed by GitHub
parent
commit
3bd784cec6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      components/style/core/motion/zoom.less

2
components/style/core/motion/zoom.less

@ -3,6 +3,7 @@
.@{className}-enter,
.@{className}-appear {
transform: scale(0); // need this by yiminghe
opacity: 0;
animation-timing-function: @ease-out-circ;
}
.@{className}-leave {
@ -49,6 +50,7 @@
transform: scale(0.8);
}
100% {
opacity: 1;
transform: scale(1);
}
}

Loading…
Cancel
Save