使背景图像响应

时间:2019-09-19 05:29:24

标签: html css responsive-design

我正在写一个即将发布的页面,它在桌面模式下效果很好!但在移动设备中,图像隐藏了一些艺术品,

在移动视图中,如下所示: enter image description here

您可能会注意到,在移动视图中,它隐藏在艺术品的某些部分

但在桌面模式下效果很好:

enter image description here

这是我的完整摘录:

<!DOCTYPE html>
<html>
  <head>
    <title>HOME: </title>
  </head>
<style>
body, html {
  height: 100%;
  margin: 0;
}

.bgimg {
  background-image: url('bg12.png');
  height: 100%;
  max-width: 100%;
  background-position: center;
  background-size: cover;
  position: relative;
  color: black;
  font-family: KhmerUI;
  src: url(KhmerUI.ttf);
  font-size: 25px;
}

.topleft {
  position: absolute;
  top: 0;
  left: 16px;
}

.bottomright {
  position: absolute;
  top: 0;
  right: 30px;
}

.middle {
  position: absolute;
  top: 50%;
  left: 70%;
  transform: translate(-50%, -50%);
  text-align: center;
}

hr {
  margin: auto;
  width: 40%;
}
</style>
<body>

<div class="bgimg">
  <div class="topleft">
    <img src="loDgo-2.png" alt="logo" style="width:150px;height:120px;">
  </div>
  <div class="middle">
    <h1>COMING SOON</h1>
    <hr>
    <p>STAY TUNED</p>
  </div>
  <div class="bottomright">
    <p>Powered By</p>
    <img src="cropD-3.png" style="width:150px;height:50px;">
    <div></div>
  </div>
</div>

</body>
</html>

这是我的背景图片:

enter image description here

任何人都可以帮助我修复移动视图,我需要图像的插图应与我看到的桌面模式相似。艺术品不能被隐藏

5 个答案:

答案 0 :(得分:2)

一种解决方案是将样式更新为:

.bgimg {
  background-image: url('bg12.png');
  height: 100%;
  max-width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  color: black;
  font-family: KhmerUI;
  src: url(KhmerUI.ttf);
  font-size: 25px;
}

为了进一步自定义图像的位置,您可以使用媒体查询在background-position上尝试不同的选项

在此处查看更多信息: CSS background-size cover and background-position

在这里: https://www.w3schools.com/cssref/pr_background-position.asp

答案 1 :(得分:2)

尝试一下

img {
     max-width: 100%; 
     display:block; 
     height: auto;
}

示例jsFiddle(调整浏览器大小以查看响应度)

答案 2 :(得分:2)

您可以尝试以下CSS。

img {
  width : 100%;
  height : auto
}

答案 3 :(得分:2)

最好使用background-size: cover;,因为它在良好的编码实践中比较可取。但是要根据屏幕尺寸调整图像大小,请使用background-size: 100%;

答案 4 :(得分:0)

希望这会帮助您修复它。

Link to codepen for the same as I could not add image as background in here.

.background{
  background-image:url('image url');
  background-repeat:no-repeat;
  background-position:50%;
  background-size:100%;
  width:calc(100vw - 1em);
  height:calc(100vh - 1em);
  display:block;
  position:relative;
}

h1{
  margin:0;
  display:inline-block;
  padding:0;
  text-align:center;
  transform:translate(10em,10em);
  color:white;
  position:relative;
}
<div class="background">
  <h1>Coming Soon</h1>  
</div>