作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 React Native 中制作一个带有面部图像和以时钟为中心的指针的时钟组件。 不允许嵌入其他图像。我找到了一些关于将文本居中放置在图像上的帖子,但找不到任何方法让图像居中放置在图像上。
编辑:我正在尝试找到一种避免提供绝对位置的方法,以便可以动态调整组件的大小。
最佳答案
如果我没理解错的话,你想在另一张图片上显示一张图片。将一个作为父图像,另一个作为子图像,不使用绝对位置。为此,您可以使用 react-native 提供的 ImageBackground 组件,并使用百分比值设置其高度和宽度。
例子如下:
父图像:Clock.png 是一个ImageBackground组件
子图像:Needle.png 是一个图像组件
import React, { Component } from 'react'
import { StyleSheet, View, Text, ImageBackground, Image } from 'react-native'
export default class ImageView extends Component {
render() {
return (
<View
style={{
flex: 1
}}
>
<View
style={{
flex: 0.25,
alignItems: 'center',
justifyContent: 'center',
backgroundColor: 'red'
}}
>
<Text style={{ color: 'white', fontSize: 26 }}>I am Header</Text>
</View>
<View
style={{
flex: 1,
alignItems: 'center',
justifyContent: 'center',
// backgroundColor: 'blue',
borderWidth: 1,
borderColor: 'red'
}}
>
<ImageBackground
source={require('@assets/Clock.png')}
style={{
height: '60%',
width: '100%'
}}
resizeMode="contain"
>
<Image
style={{
marginTop: '4.5%',
alignSelf: 'center',
height: '30%',
width: '100%'
}}
resizeMode="contain"
source={require('@assets/Needle.png')}
/>
</ImageBackground>
</View>
</View>
)
}
}
关于react-native - 如何在 React Native 中将一张图片置于另一张图片的中央,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48114628/
我是一名优秀的程序员,十分优秀!