翻书折纸特效

元气小坏坏 提交于 2020-01-21 22:27:16

这个特效大家可以自己去改变其中的值去看看有什么变化,原理起始我也不是很懂,只知道用
效果展示:

  • hover前:
    在这里插入图片描述
    在这里插入图片描述
<style>
  .page{
    background: pink;
    width: 120px;
    height: 120px;
  }
   .content {
    width: 120px;
    height: 120px;
    margin: 40px auto 0;
    position: relative;
    cursor: pointer;
  }
  .content:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    border: 0px solid;
    border-color: rgba(0, 0, 0, 0.2) #fff ;
    transition: border .5s ease; 
  }
  .content:hover:before {
    border-right-width: 50px;
    border-bottom-width: 50px;
  }
   </style>
   </head>
   <body>
    <div class="content" id="content">
      <div class="page"></div>
    </div>
   </body>
  </html>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!