通过CSS翻转图像不适用于所有浏览器

时间:2013-01-30 12:35:17

标签: html css cross-browser

我通过CSS翻转图像并在mozila中进行wirking.but在所有其他浏览器中它不起作用。我无法知道我在这里缺少什么。

这是我的图片代码:

<div id="f1_container">
<div id="f1_card" class="shadow">
  <div class="front face">
    <img src="http://placehold.it/300x300"/>
  </div>
  <div class="back face center">
    <p>This is nice for exposing more information about an image.</p>
    <p>Any content can go here.</p>
  </div>
</div>
</div>

这是我的CSS:

#f1_container {
  position: relative;
  margin: 10px auto;
  width: 450px;
  height: 281px;
  z-index: 1;
}
#f1_container {
  perspective: 1000;
}
#f1_card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 1.0s linear;
}
#f1_container:hover #f1_card {
  transform: rotateY(180deg);
  box-shadow: -5px 5px 5px #aaa;
}
.face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.face.back {
  display: block;
  transform: rotateY(180deg);
  box-sizing: border-box;
  padding: 10px;
  color: white;
  text-align: center;
  background-color: #aaa;
}
</style>

1 个答案:

答案 0 :(得分:3)

您正在使用前沿的CSS属性。

例如,

transform仅在IE 10,Firefox和Opera中无效。

您可以通过使用-webkit-前缀复制属性来获得基于webkit的浏览器的支持(因为该引擎中的实现仍然被认为是实验性的)。

另请参阅:can I use