码迷,mamicode.com
首页 > 其他好文 > 详细

没啥用系列 之 《A-B面翻转》

时间:2021-06-07 21:07:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:视图   cti   position   像素   联想   color   red   center   tle   

先看效果:
技术图片
联想一下:如果A面放一张照片,B面是一段介绍和链接,是不是很有意思?多张照片组成的照片墙,是不是很浪漫(ˉ▽ˉ )

再上代码:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Document</title>
  <style>
    .box {
      width: 400px;
      height: 400px;
      border: 1px solid red;
      display: flex;
      align-items: center;
      justify-content: center;
      perspective: 500px;
      /*元素距离视图的距离,以像素计*/
    }

    .centter {
      height: 200px;
      width: 200px;
      transition: all 1s ease-in-out;
      cursor: pointer;
      position: relative;
    }

    .centter_child {
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      right: 0;
    }

    .A_side {
      background-color: #999;
      transition: all 0s ease-in-out 0.5s;
      z-index: 10;
    }

    .B_side {
      background-color: red;
      transition: all 0s ease-in-out 0.5s;
      z-index: 0;
    }

    .centter:hover {
      transform: rotate3d(0, 1, 0, 180deg);
    }

    .centter:hover .A_side {
      z-index: 0;
    }

    .centter:hover .B_side {
      z-index: 10;
      transform: rotate3d(0, 1, 0, 180deg);
    }
  </style>
</head>

<body>
  <div id="app">
    <div class="box">
      <div class="centter">
        <div class="A_side centter_child">正面</div>
        <div class="B_side centter_child">反面</div>
      </div>
    </div>
  </div>
</body>

</html>

没啥用系列 之 《A-B面翻转》

标签:视图   cti   position   像素   联想   color   red   center   tle   

原文地址:https://www.cnblogs.com/MrZhujl/p/14859201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!