HTML/CSS 翻转卡片适用于桌面设备,但不适用于移动设备

HTML/CSS Flip Card Works on Desktop but not Mobile

我正在帮助一个朋友建立一个基本的 html/css 网站,但我们在设置翻转卡片效果时遇到了问题。

你可以在这里看到:https://www.fragranceadvisorjobs.com/ 中间部分的那些瓷砖在悬停时会翻转并显示有关品牌的信息。 它似乎在桌面和使用 Chrome 的响应式查看器上工作得很好。

但是,当我在我的移动设备 (ios) 上访问该网站时,它具有翻页效果但不显示卡片背面的内容。

.flip-card {
  background-color: transparent;
  width: 32%;
  display: inline-block;
  height: 200px;
  perspective: 1000px;
  padding-left: 1px;
  padding-right: 1px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;

}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.flip-card-front {
  color: black;
}

.flip-card-back {
  background-color: #000;
  color: #fff;
  transform: rotateY(180deg);
}

@media (max-width: 768px) {
  .flip-card {
        height: 180px;
    }
}

@media (max-width: 425px) {
    .flip-card {
        width: 98%;
        height: 150px;
    }
}
 <div class="flip-card">
  <div class="flip-card-inner" style="background-color: #000">
    <div class="flip-card-front">
     <div class="logo_rowthird" ><img src="https://www.fragranceadvisorjobs.com/images/logos/lorealwhite.svg" alt="atelier" style="max-height: 80px;" class="shadow"></div></div>
     <div class="flip-card-back">
      <h1>L'Oreal Luxe</h1> 
       <p>“L’Oréal Luxe opens a unique world of beauty. Its international brands incarnate all the facets of elegance and refinement in three major specializations: skin care, make-up and perfume.</p>
    </div>
     </div></div>

我用我们在这个设置中使用的编码创建了一个代码笔 https://codepen.io/MarioDidIt/pen/rNxQVaw

奇怪的是代码笔中的代码正是网站上的代码,它在网站上工作得很好,但在代码笔中它没有显示背面的任何内容。我猜代码笔正在以与 ios 浏览器相同的方式读取它。

有谁知道我可以做些什么来解决这个问题?非常感谢任何帮助!

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
  font-family: Arial, Helvetica, sans-serif;
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: #bbb;
  color: black;
}

.flip-card-back {
  background-color: #2980b9;
  color: white;
  transform: rotateY(180deg);
}
</style>
</head>
<body>

<h1>Card Flip with Text on Back</h1>
<h3>Hover over the image on a desktop to see the back</h3>
<h3>Click on the image on mobile to see the back</h3>

<div class="flip-card">
  <div class="flip-card-inner">
    <div class="flip-card-front">
      <img src="https://via.placeholder.com/300" alt="Avatar" style="width:300px;height:300px;">
    </div>
    <div class="flip-card-back">
      <h1>Content Header</h1> 
      <p>Content Part I</p> 
      <p>Content Part II</p>
    </div>
  </div>
</div>

</body>
</html>

希望这对您有所帮助。 :-)