File tree 2 files changed +4
-2
lines changed
miniprogram/packageSkyline/common/custom-route
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ const HalfScreenDialogRouteBuilder = ({
35
35
return {
36
36
marginTop : `${ marginTop } px` ,
37
37
borderRadius : '10px' ,
38
+ overflow : 'hidden' ,
38
39
height : `${ selfHeight } px` ,
39
40
transform : `translateY(${ translateY } px)` ,
40
41
}
Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ const ScaleTransitionRouteBuilder = ({
20
20
21
21
const handlePrimaryAnimation = ( ) => {
22
22
'worklet'
23
-
24
23
/**
25
24
* 1. 手势拖动时采用原始值
26
25
* 2. 页面进入时采用 curve 曲线生成的值
27
26
* 3. 页面返回时采用 reverseCurve 生成的值
28
27
*/
28
+
29
29
let t = primaryAnimation . value
30
30
31
31
if ( ! userGestureInProgress . value ) {
@@ -46,7 +46,7 @@ const ScaleTransitionRouteBuilder = ({
46
46
47
47
const handleSecondaryAnimation = ( ) => {
48
48
'worklet'
49
-
49
+
50
50
let t = secondaryAnimation . value
51
51
if ( ! userGestureInProgress . value ) {
52
52
t = _curveSecondaryAnimation . value
@@ -59,6 +59,7 @@ const ScaleTransitionRouteBuilder = ({
59
59
const radius = 12 * t
60
60
return {
61
61
borderRadius : `${ radius } px` ,
62
+ overflow : `${ radius > 0 ? 'hidden' : 'visible' } ` ,
62
63
transform : `translateY(${ translateY } px) scale(${ scale } )` ,
63
64
}
64
65
}
You can’t perform that action at this time.
0 commit comments