参考
backfaceVisibility
类型 |
---|
枚举('visible' , 'hidden' ) |
backgroundColor
borderBottomColor
borderBottomEndRadius
borderBottomLeftRadius
borderBottomRightRadius
borderBottomStartRadius
borderStartEndRadius
borderStartStartRadius
borderEndEndRadius
borderEndStartRadius
borderBottomWidth
borderColor
边框曲线
iOS
在 iOS 13+ 上,可以更改边框的角曲线。
类型 |
---|
枚举('circular' , 'continuous' ) |
borderEndColor
borderLeftColor
borderLeftWidth
borderRadius
如果圆角边框不可见,请尝试也应用 overflow: 'hidden'
。
borderRightColor
borderRightWidth
borderStartColor
borderStyle
类型 |
---|
枚举('solid' , 'dotted' , 'dashed' ) |
borderTopColor
borderTopEndRadius
borderTopLeftRadius
borderTopRightRadius
borderTopStartRadius
borderTopWidth
borderWidth
光标
iOS
在 iOS 17+ 上,设置为 pointer
允许在指针(例如 iOS 上的触控板或触控笔,或 visionOS 上用户的注视)悬停在视图上时出现悬停效果。
海拔高度
Android
使用 Android 的底层 elevation API 设置视图的海拔高度。这会在项目上添加一个投影,并影响重叠视图的 z 顺序。仅在 Android 5.0+ 上受支持,在早期版本上无效。
opacity
pointerEvents
控制 View
是否可以成为触摸事件的目标。
'auto'
:View 可以成为触摸事件的目标。
'none'
:View 从不成为触摸事件的目标。
'box-none'
:View 从不成为触摸事件的目标,但其子视图可以。
'box-only'
:View 可以成为触摸事件的目标,但其子视图不能。
类型 |
---|
枚举('auto' , 'box-none' , 'box-only' , 'none' ) |