gpt4 book ai didi

css - 有一个固定的 在我滚动时不会自行移动

转载 作者:太空宇宙 更新时间:2023-11-04 06:09:14 25 4
gpt4 key购买 nike

我想要一个占据所有屏幕并在我滚动时保持静止的背景图像。

我在 React Native 元素中有这个组件:

<ImageBackground`     style={styles.backgroundImage}
source={require('../assets/images/Fondo1b.jpg')}>
....
</ImageBackground>

它正在包装另一个组件,它有这样的风格:

  backgroundImage: {
flex: 1,
resizeMode: 'cover',
width: Dimensions.get('window').width,
height: Dimensions.get('window').height
},

当我上下滚动时,它会随着屏幕移动: GIF link

在这里你可以看到它是如何随着滚动移动的。

我需要它保持静止并占据屏幕大小,在我滚动时不移动并且不移动我的 FAB(它是 Native Base 的 FAB,它有帮助...)有什么建议吗?

最佳答案

检查一下。 React Native 正是需要这个

https://medium.com/azimuth/adding-a-static-background-for-react-native-scrollview-79aa6b43e314

<ImageBackground style={styles.backgroundImage}/>  


backgroundImage: {
width: Dimensions.get('window').width,
height: Dimensions.get('window').height,
position: "absolute",
top: 0,
left: 0,
right: 0,
bottom: 0,
zIndex: -1
},

关于css - 有一个固定的 <ImageBackground> 在我滚动时不会自行移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56567379/

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