当我使用封面值时,背景大小不会缩放

时间:2016-05-02 04:24:45

标签: html css css3

html ,body {
  height:100%;
  width:100%;
  margin:0px;
}

h1 {
  margin:50px;
}

.jumbotron {
  height:100%;
  background-image: url("http://www.zoophotels.com/wp-content/uploads/2015/02/cpt-new.jpg");
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size:cover;
}
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
    <link rel="stylesheet" type="text/css" href="style.css">
  </head>
  <body>
    <div class="jumbotron">
      <h1>Welcome</h1>      
    </div>  
  </body>
</html>

我不知道出了什么问题,但似乎当我将background-size值更改为cover时,背景不会根据我的浏览器大小进行缩放,但是当我将值设置为100% 100%,它像我期望的那样扩展。

那么,如何保持封面的价值并让jumbotron类做正确的比例(在这种情况下保持背景大小(cover)的值,而{{1}时的大小}仍然缩放jumbotron

其他信息:

我希望结果是

1.图像覆盖率为100%100%(适合屏幕)

2.当我调整浏览器窗口大小时,我希望图像比例仍然像1步

查看此网址:http://www.qerja.com/ 我希望jumbotron看起来像这个网站jumbotron,当我调整浏览器窗口大小时调整图像宽度

1 个答案:

答案 0 :(得分:0)

封面正在按预期工作。图像保持其纵横比,因为它相对于浏览器窗口进行缩放。与100%100%不同。

  

将背景图像缩放为尽可能大   背景区域完全被背景图像覆盖。一些   部分背景图像可能不在背景中   定位区域

CSS3 background-size Property