我正在开发人脸识别Web应用程序,但是在尝试“修复”图像上的边框以使其具有响应性时遇到一些问题。如果屏幕为完整尺寸,则结果为(正确):
但是,一旦我尝试调整窗口浏览器的大小,使其变小,框就会失去其位置,如下所示:
.image-container {
position: relative;
display: inline-block;
img {
display: block;
max-width: 100%;
height: auto;
margin-left: auto;
margin-right: auto;
}
}
.box {
display: flex;
flex-wrap: wrap;
justify-content: center;
position: absolute;
border: 2px solid red;
}
<div>
{this.setRecognitionType()}
<div className={styles["image-container"]}>
{this.state.box ? (
<div
className={styles.box}
style={{
top: this.state.box.top,
right: this.state.box.right,
bottom: this.state.box.bottom,
left: this.state.box.left
}}
/>
) : null}
<img id="image" src={this.props.imageUrl} alt="" />
</div>
</div>
编辑 Box在这种情况下的财产:
top: 192px;
right: 85px;
bottom: 118px;
left: 92px;
编辑:解决方案 正如已经回答的那样,唯一的方法似乎是使用百分比而不是px。
我整理的方式:
left: (coords.left / imageWidth) * 100,
top: (coords.top / imageHeight) * 100,
right: ((width - coords.right) / imageWidth) * 100,
bottom: ((height - coords.bottom) / imageHeight) * 100
“ imageHeight”和“ imageWidth”是原始图片的大小,坐标是像素坐标。
答案 0 :(得分:1)
由于您使用静态单位放置盒子,因此您的代码无法产生理想的效果。随着图片变小,该框始终始终是顶部192px,右侧85px等。请尝试使用百分比单位代替此方法(显然要使用数字,直到看起来正确为止):
top: 30%;
right: 5%;
left: 5%;
bottom: 15%;