@@ -24,7 +24,7 @@
left: 0;
top: 0;
width: 100%;
- transition: all 0.2s ease-in-out;
+ transition: all 0.2s linear;
opacity: 0;
&.show {
opacity: 1;
@@ -35,10 +35,10 @@ const WrapHoc: React.FC<Props> = ({
if (animateTime) {
setTimeout(() => {
setMaskVisible(false);
- }, animateTime);
+ }, animateTime - 200);
doClose(resData);
- }, animateTime + 50);
+ }, animateTime);
return;
}