为什么iOs Safari会显示完整尺寸的背景图片?

时间:2015-04-29 14:35:19

标签: ios css background-image background-size

我正在一个网站上工作,你有一些带有背景图像的方框作为缩略图。我必须使用背景图像,因为我们正在研究的CMS过时而且客户端不会发生变化(主要是问题)。

我在iPad2和iPad上的iOs Safari中发现了一个奇怪的行为。 iPhone5(最新的iOS),并不知道为什么。

这是我的代码:



a img,
.thumb,
figcaption,
a:hover .thumb {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}
.thumb {
  height: 250px;
  margin-bottom: 28px;
  overflow: hidden;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
figcaption {
  background-color: #b61910;
  background-color: rgba(182, 25, 16, .85);
  position: absolute;
  height: 39px;
  bottom: 35px;
  color: white;
  width: calc(100% - 30px);
}
figcaption h3 {
  font-style: normal;
  position: absolute;
  bottom: 5px;
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px 0 0 5px;
  transition: transform 0.3s;
  transform: translate3d(0, 0%, 0);
}
a:hover h3 {
  transform: translate3d(0, -20%, 0);
  text-shadow: 1px 1px 1px #000;
}
a:hover figcaption {
  height: 5px;
}
a:hover .thumb {
  background-size: 120% 120%;
  opacity: .8
}

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<div class="container">
  <div class="row">
    <a href="">
      <div class="col-sm-12">
        <figure class="thumb" style="background-image:url(http://lorempixel.com/output/food-h-c-850-890-7.jpg)">
          <figcaption>
            <h3>Product-Title</h3>
          </figcaption>
        </figure>
      </div>
    </a>
  </div>
</div>
&#13;
&#13;
&#13;

在我的桌面上显示整个图像但在iOS上看起来它显示缩略图框内的原始大小。 我该如何解决这个问题?

任何帮助都会很棒:) 感谢

moesphemie

0 个答案:

没有答案
相关问题