Skip to content

Commit 36bfe1b

Browse files
author
sanford
committed
fix: custom route border-radius
1 parent 4c902be commit 36bfe1b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

miniprogram/packageSkyline/common/custom-route/hafl-screen-route.js

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ const HalfScreenDialogRouteBuilder = ({
3535
return {
3636
marginTop: `${marginTop}px`,
3737
borderRadius: '10px',
38+
overflow: 'hidden',
3839
height: `${selfHeight}px`,
3940
transform: `translateY(${translateY}px)`,
4041
}

miniprogram/packageSkyline/common/custom-route/scale-route.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ const ScaleTransitionRouteBuilder = ({
2020

2121
const handlePrimaryAnimation = () => {
2222
'worklet'
23-
2423
/**
2524
* 1. 手势拖动时采用原始值
2625
* 2. 页面进入时采用 curve 曲线生成的值
2726
* 3. 页面返回时采用 reverseCurve 生成的值
2827
*/
28+
2929
let t = primaryAnimation.value
3030

3131
if (!userGestureInProgress.value) {
@@ -46,7 +46,7 @@ const ScaleTransitionRouteBuilder = ({
4646

4747
const handleSecondaryAnimation = () => {
4848
'worklet'
49-
49+
5050
let t = secondaryAnimation.value
5151
if (!userGestureInProgress.value) {
5252
t = _curveSecondaryAnimation.value
@@ -59,6 +59,7 @@ const ScaleTransitionRouteBuilder = ({
5959
const radius = 12 * t
6060
return {
6161
borderRadius: `${radius}px`,
62+
overflow: `${radius > 0 ? 'hidden' : 'visible'}`,
6263
transform: `translateY(${translateY}px) scale(${scale})`,
6364
}
6465
}

0 commit comments

Comments
 (0)