gpt4 book ai didi

javascript - react native : transparent view inside opaque view

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:29:49 25 4
gpt4 key购买 nike

我想用不透明的框架和透明的中心显示相机的 View 。图片中的东西(黑色部分是相机的 View )。我正在寻找具有纯 react native 组件的解决方案,没有额外的库(如 https://github.com/gilbox/react-native-masked-view ),没有添加具有透明中心或其他 hack 的全屏图像。

enter image description here

最佳答案

我找到了简单的解决方案,我添加了 View,内部透明,边框不透明,如下所示:

let {width, height} = Dimensions.get('window');
<View
style={{

position: 'absolute',
top: -width/2 + 100,
left: -width/2 + 50,
right: -width/2 + 50,
bottom: -width/2 + 200,
backgroundColor: 'transparent',

borderWidth: width/2,
borderRadius: width,
borderColor: 'red',
opacity: 0.3,
}}
/>

关于javascript - react native : transparent view inside opaque view,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39883589/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com