代码之家  ›  专栏  ›  技术社区  ›  Alex Angelico

纯CSS响应翻转框

  •  0
  • Alex Angelico  · 技术社区  · 8 年前

    我想要一些翻页盒。鼠标悬停时,图像将翻转并显示文本。 这是可行的,但它没有响应(第二行框结束于前一行)。 问题是.f_contenedor height,但我希望它能够响应,所以我使用的是“padding top:56%”属性。

    我怎样才能确保“F偅竞争者”的高度与“脸”的高度相同?

    这里有一个例子 http://bregna.org/flip.html

    这是一个片段。是相同的代码,只是背景不同。

            .f_contenedor:hover .f_card {
                transform: rotateY(180deg);
                box-shadow: -5px 5px 5px #aaa;
            }
    
            .f_contenedor {
                position: relative;
                padding: 10px;
                width: 50%;
                height: auto;
                z-index: 1;
                float: left;
                perspective: 1000;
                box-sizing:border-box;;
            }
    
            .f_card {
                width: 100%;
                height: 100%;
                transform-style: preserve-3d;
                transition: all .3s linear;
    
            }
    
            @media (min-width: 768px) {
                .f_contenedor {
                    width: 50%;
                }
            }
    
            @media (min-width: 992px) {
                .f_contenedor {
                    width: 30%;
                }
    
            }
    
            .shadow {
                -moz-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.6);
                -webkit-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.6);
                box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.6);
            }
    
            .face {
                background-size: cover;
                background-repeat: no-repeat;
            }
    
            .face {
                position: absolute;
    
                width: 100%;
                height: 0;
                padding-top: 56%;
                backface-visibility: hidden;
    
            }
    
            .face.back {
                display: block;
                transform: rotateY(180deg);
                box-sizing: border-box;
                height: 100%;
                color: white;
                text-align: center;
                background-color: #aaa;
            }
    
            .face.back span {
                margin-top: -56%;
                padding: 12px;
                display: block;
            }
        
    <!doctype html>
    <html lang="es_MX">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
        <link rel="icon" type="image/png" href="/favicon.png"/>
        <title>Flip</title>
        
    </head>
    <body>
    <div class="f_contenedor">
        <div class="f_card" style="background-color: black">
            <div class="back face text-center shadow">
                <span>
                    <h1>WEB</h1>
                    <p>Accusantium delectus non quae. Aliquam delectus, dolorem ea id, inventore libero molestias numquam, porro quasi quibusdam reiciendis sequi soluta tenetur veniam voluptatem.
                    </p></span>
            </div>
        </div>
    </div>
    <div class="f_contenedor">
        <div class="f_card">
            <div class="front face shadow" style="background-color: orange">
            </div>
            <div class="back face text-center shadow">
                <span>
                    <h1>CMS</h1>
                    <p>Accusantium delectus non quae. Aliquam delectus, dolorem ea id, inventore libero molestias numquam, porro quasi quibusdam reiciendis sequi.
                    </p></span>
            </div>
        </div>
    </div>
    <div class="f_contenedor">
        <div class="f_card">
            <div class="front face shadow" style="background-color : firebrick;">
            </div>
            <div class="back face text-center shadow">
                <span>
                    <h1>THE GRID</h1>
                    <p>Accusantium delectus non quae. Aliquam delectus, dolorem ea id, inventore libero molestias numquam.
                    </p></span>
            </div>
        </div>
    </div>
    <div class="f_contenedor">
        <div class="f_card">
            <div class="front face shadow" style="background-color: green">
            </div>
            <div class="back face text-center shadow">
                <span>
                    <h1>FLOWERS</h1>
                    <p>Ad, aperiam blanditiis dolorem dolorum ea earum ipsam laboriosam molestias non odio provident .
                    </p></span>
            </div>
        </div>
    </div>
    <div class="f_contenedor">
        <div class="f_card">
            <div class="front face shadow" style="background-color: yellow">
            </div>
            <div class="back face text-center shadow">
                <span>
                    <h1>DRINKS</h1>
                    <p>Accusamus animi earum enim ex impedit nesciunt nihil quod quos vel? Dolores fugit harum modi placeat quasi  quam?
                    </p></span>
            </div>
        </div>
    </div>
    <div class="f_contenedor">
        <div class="f_card">
            <div class="front face shadow" style="background-color: greenyellow">
            </div>
            <div class="back face text-center shadow">
                <span>
                    <h1>MURALS</h1>
                    <p>Aperiam aut consequuntur nostrum rem similique temporibus veritatis.
                    </p></span>
            </div>
        </div>
    </div>
    
    </body>
    </html>
    1 回复  |  直到 8 年前
        1
  •  0
  •   Dacre Denny    8 年前

    您可以稍微调整您的CSS,以便 .back 面完全以绝对方式定位,并与父对象的顶部对齐。此外,您还需要调整 .face 相对定位。

    所以沿着这条线:

    .face {
      /*   position: absolute; Remove this */ 
      position:relative; /* Position the face relatively by default */
    
      width: 100%;
      height: 0;
      padding-top: 56%;
      backface-visibility: hidden;
    
    }
    
    .face.back {
      position:absolute; /* For back faces, these should be positioned with absolute */
      top:0; /* Align back faces with the top of the parent */
      display: block;
      transform: rotateY(180deg);
      box-sizing: border-box;
      height: 100%;
      color: white;
      text-align: center;
      background-color: #aaa;
    }